package domain // Attachment 附件对象 type Attachment struct { // 附件文件类型,jpg,pdf FileType string `json:"fileType"` // 附件名称 Name string `json:"name"` // 附件地址 Url string `json:"url"` // 附件文件大小 FileSize int64 `json:"fileSize"` }