package common
type OpenAttachmentRequest struct {
// core:true 【文件名称】文件名称
FileName string `json:"fileName"`
// core:true 【文件base64】文件base64
FileBase64 string `json:"fileBase64"`
// core:true 【文件类型】文件类型 【传参方式】 文件类型,可传pdf、doc、doc等文件后缀 【说明】 支持传入pdf,ofd,xlsx,pptx,docx,doc,wps,xls,ppt,png,webp,tiff,xml,xht,xhtml,htm,html,txt,jpg,jpeg,gif,avi,zip,rar,rtf,cs,mp4,md,不传时默认pdf
FileType string `json:"fileType"`
}