mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-19 01:36:38 +08:00
11 lines
216 B
Go
11 lines
216 B
Go
package vo
|
|
|
|
type File struct {
|
|
Id uint
|
|
UserId uint `json:"user_id"`
|
|
URL string `json:"url"`
|
|
Ext string `json:"ext"`
|
|
Size int64 `json:"size"`
|
|
CreatedAt int64 `json:"created_at"`
|
|
}
|