| 1234567891011121314151617181920212223 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // LearningMaterialFile is the golang structure for table learning_material_file.
- type LearningMaterialFile struct {
- Id int `orm:"Id,primary" json:"id"` // Id
- MaterialId int `orm:"MaterialId" json:"materialId"` // 资料 Id
- Name string `orm:"Name" json:"name"` // 文件名
- Url string `orm:"Url" json:"url"` // 文件地址
- Size string `orm:"Size" json:"size"` // 文件大小
- Extend string `orm:"Extend" json:"extend"` // 文件扩展名
- OperateBy string `orm:"OperateBy" json:"operateBy"` // 操作人
- CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
- UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
- DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
- }
|