OpenAttachmentRequest.go 568 B

1234567891011
  1. package common
  2. type OpenAttachmentRequest struct {
  3. // <ext>core:true</ext> 【文件名称】文件名称
  4. FileName string `json:"fileName"`
  5. // <ext>core:true</ext> 【文件base64】文件base64
  6. FileBase64 string `json:"fileBase64"`
  7. // <ext>core:true</ext> 【文件类型】文件类型 【传参方式】 文件类型,可传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
  8. FileType string `json:"fileType"`
  9. }