geekai/api/store/model/file.go
2024-01-15 15:03:05 +08:00

13 lines
187 B
Go

package model
import "time"
type File struct {
Id uint `gorm:"primarykey;column:id"`
UserId uint
URL string
Ext string
Size int64
CreatedAt time.Time
}