Files
36Wisdom/biz/model/entity/entity_life_task.go
T
2026-08-13 11:58:27 +08:00

13 lines
513 B
Go

package entity
// LifeTask 生活践行任务:关联计策,章完美后下发,家长确认为权威入口。
type LifeTask struct {
Id int64 `json:"id" orm:"id"`
StrategyId int64 `json:"strategy_id" orm:"strategy_id"`
Title string `json:"title" orm:"title"`
Description string `json:"description" orm:"description"`
Guide string `json:"guide" orm:"guide"`
RewardPoints int `json:"reward_points" orm:"reward_points"`
Status int `json:"status" orm:"status"`
}