learning_material_file.go 1.1 KB

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