阶段性提交

This commit is contained in:
GoEdgeLab
2020-09-13 20:37:28 +08:00
parent 84868c1a0b
commit dc79c661d7
89 changed files with 1364 additions and 12899 deletions

View File

@@ -0,0 +1,28 @@
package models
//
type File struct {
Id uint32 `field:"id"` // ID
Description string `field:"description"` // 文件描述
Filename string `field:"filename"` // 文件名
Size uint32 `field:"size"` // 文件尺寸
CreatedAt uint32 `field:"createdAt"` // 创建时间
Order uint32 `field:"order"` // 排序
Type string `field:"type"` // 类型
State uint8 `field:"state"` // 状态
}
type FileOperator struct {
Id interface{} // ID
Description interface{} // 文件描述
Filename interface{} // 文件名
Size interface{} // 文件尺寸
CreatedAt interface{} // 创建时间
Order interface{} // 排序
Type interface{} // 类型
State interface{} // 状态
}
func NewFileOperator() *FileOperator {
return &FileOperator{}
}