6
0

learning_learning_record.go 1020 B

123456789101112131415161718192021
  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. // LearningLearningRecord is the golang structure for table learning_learning_record.
  9. type LearningLearningRecord 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. MaterialId int `orm:"MaterialId" json:"materialId"` // 资料 Id
  14. Status int `orm:"Status" json:"status"` // 状态 1 已学习
  15. CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
  16. UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
  17. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
  18. }