// ========================================================================== // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY. // ========================================================================== package internal import ( "github.com/gogf/gf/os/gtime" ) // LearningQuestion is the golang structure for table learning_question. type LearningQuestion 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 多选 3 判断 Enable int `orm:"Enable" json:"enable"` // 是否启用 Content string `orm:"Content" json:"content"` // 题目内容 Explanation string `orm:"Explanation" json:"explanation"` // 题目解析 OperateBy string `orm:"OperateBy" json:"operateBy"` // 操作人 CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间 UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间 DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间 }