13 lines
513 B
Go
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"`
|
|
}
|