17 lines
770 B
Go
17 lines
770 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"`
|
|
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"`
|
|
}
|