文件

File ``` type File struct { ID uint `json:"id"` // 文件ID URL string `json:"url"` // 文件URL } ``` Document ``` type Document struct { ID uint `json:"id"` // 文档ID URL string `json:"url"` // 文档URL Type typedef.DocumentType `json:"type"` // 文档类型 } ```