6
0

learning_testpaper.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. // LearningTestpaper is the golang structure for table learning_testpaper.
  9. type LearningTestpaper struct {
  10. Id int `orm:"Id,primary" json:"id"` // Id
  11. SkillId int `orm:"SkillId" json:"skillId"` // 技能 Id
  12. Name string `orm:"Name" json:"name"` // 试卷名称
  13. Enable int `orm:"Enable" json:"enable"` // 是否启用
  14. TimeLimit int `orm:"TimeLimit" json:"timeLimit"` // 答题时间/分钟
  15. PassLimit int `orm:"PassLimit" json:"passLimit"` // 合格标准/题数
  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. }