Files
36Wisdom/biz/model/entity/entity_level.go
T
2026-08-14 16:11:10 +08:00

18 lines
898 B
Go

package entity
// Level 情境关卡:每计 1-5 关,关联环境场景元素,带内容版本号。
type Level struct {
Id int64 `json:"id" orm:"id"`
StrategyId int64 `json:"strategy_id" orm:"strategy_id"`
Title string `json:"title" orm:"title"`
SceneId int64 `json:"scene_id" orm:"scene_id"`
SceneContent string `json:"scene_content" orm:"scene_content"`
SceneContentPinyin string `json:"scene_content_pinyin" orm:"scene_content_pinyin"`
SceneImage string `json:"scene_image" orm:"scene_image"`
SceneAudio string `json:"scene_audio" orm:"scene_audio"`
AgeGroup string `json:"age_group" orm:"age_group"`
ContentVersion int `json:"content_version" orm:"content_version"`
SortOrder int `json:"sort_order" orm:"sort_order"`
Status int `json:"status" orm:"status"`
}