14 lines
515 B
Go
14 lines
515 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
// ChapterReview 章末温故:每章完美后抽旧关复习,完成解锁下一章。
|
|
type ChapterReview struct {
|
|
Id int64 `json:"id" orm:"id"`
|
|
ChildId int64 `json:"child_id" orm:"child_id"`
|
|
StrategyId int64 `json:"strategy_id" orm:"strategy_id"`
|
|
LevelIds string `json:"level_ids" orm:"level_ids"`
|
|
Status int `json:"status" orm:"status"`
|
|
CreatedAt *gtime.Time `json:"created_at" orm:"created_at"`
|
|
}
|