// ========================================================================== // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY. // ========================================================================== package internal import ( "github.com/gogf/gf/os/gtime" ) // LearningLearningRecord is the golang structure for table learning_learning_record. type LearningLearningRecord struct { Id int `orm:"Id,primary" json:"id"` // Id UserId int `orm:"UserId" json:"userId"` // 用户 Id SkillId int `orm:"SkillId" json:"skillId"` // 技能 Id MaterialId int `orm:"MaterialId" json:"materialId"` // 资料 Id Status int `orm:"Status" json:"status"` // 状态 1 已学习 CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间 UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间 DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间 }