// ========================================================================== // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY. // ========================================================================== package internal import ( "github.com/gogf/gf/os/gtime" ) // LearningMaterial is the golang structure for table learning_material. type LearningMaterial struct { Id int `orm:"Id,primary" json:"id"` // Id SkillId int `orm:"SkillId" json:"skillId"` // 技能 Id Name string `orm:"Name" json:"name"` // 资料名称 Type int `orm:"Type" json:"type"` // 资料类型 1 资料 2 视频 SortNo int `orm:"SortNo" json:"sortNo"` // 排序 Enable int `orm:"Enable" json:"enable"` // 是否启用 Content string `orm:"Content" json:"content"` // 资料内容 Annex string `orm:"Annex" json:"annex"` // 附件路径 CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间 UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间 DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间 }