16 lines
444 B
Go
16 lines
444 B
Go
package admin
|
|
|
|
type SysFile struct {
|
|
Id string `json:"id" gorm:"primary_key"`
|
|
Data []byte `json:"-"`
|
|
FileName string `json:"fileName"`
|
|
FileSize int64 `json:"fileSize"`
|
|
Sort int `json:"sort"`
|
|
CreateBy string `json:"createBy"`
|
|
CreateTime int64 `json:"createTime"`
|
|
UpdateBy string `json:"updateBy"`
|
|
UpdateTime int64 `json:"updateTime"`
|
|
State string `json:"state"`
|
|
Del int `json:"del"`
|
|
}
|