mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-04 21:27:39 +08:00
15 lines
222 B
Go
15 lines
222 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type File struct {
|
|
Id uint `gorm:"primarykey;column:id"`
|
|
UserId int
|
|
Name string
|
|
ObjKey string
|
|
URL string
|
|
Ext string
|
|
Size int64
|
|
CreatedAt time.Time
|
|
}
|