- package model
- type File struct {
- Id int `json:"id" gorm:"primary_key"`
- FileName string `json:"file_name" gorm:"column:fileName;"`
- LocalPath string `json:"local_path" gorm:"column:localPath;"`
- CosPath string `json:"cos_path" gorm:"column:cosPath;"`
- CreatedAt XTime `json:"createdAt" gorm:"column:createdAt; "`
- UpdatedAt XTime `json:"updatedAt" gorm:"column:updatedAt; "`
- }
|