6
0

learning_exam_record.go 1.2 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. // LearningExamRecord is the golang structure for table learning_exam_record.
  9. type LearningExamRecord struct {
  10. Id int `orm:"Id,primary" json:"id"` // Id
  11. UserId int `orm:"UserId" json:"userId"` // 用户 Id
  12. SkillId int `orm:"SkillId" json:"skillId"` // 技能 Id
  13. TestpaperId int `orm:"TestpaperId" json:"testpaperId"` // 试卷 Id
  14. QuestionCount int `orm:"QuestionCount" json:"questionCount"` // 试卷问题数
  15. CorrectCount int `orm:"CorrectCount" json:"correctCount"` // 答对问题数
  16. Status int `orm:"Status" json:"status"` // 状态 1 通过 2 未通过
  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. }