| 12345678910111213141516171819202122 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // LearningTestpaper is the golang structure for table learning_testpaper.
- type LearningTestpaper struct {
- Id int `orm:"Id,primary" json:"id"` // Id
- SkillId int `orm:"SkillId" json:"skillId"` // 技能 Id
- Name string `orm:"Name" json:"name"` // 试卷名称
- Enable int `orm:"Enable" json:"enable"` // 是否启用
- TimeLimit int `orm:"TimeLimit" json:"timeLimit"` // 答题时间/分钟
- PassLimit int `orm:"PassLimit" json:"passLimit"` // 合格标准/题数
- CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
- UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
- DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
- }
|