attachment.go 300 字节
package domain

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