// ========================================================================== // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY. // ========================================================================== package internal import ( "github.com/gogf/gf/os/gtime" ) // LearningExamRecord is the golang structure for table learning_exam_record. type LearningExamRecord struct { Id int `orm:"Id,primary" json:"id"` // Id UserId int `orm:"UserId" json:"userId"` // 用户 Id SkillId int `orm:"SkillId" json:"skillId"` // 技能 Id TestpaperId int `orm:"TestpaperId" json:"testpaperId"` // 试卷 Id QuestionCount int `orm:"QuestionCount" json:"questionCount"` // 试卷问题数 CorrectCount int `orm:"CorrectCount" json:"correctCount"` // 答对问题数 Status int `orm:"Status" json:"status"` // 状态 1 通过 2 未通过 CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间 UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间 DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间 }