15 lines
591 B
Go
15 lines
591 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
// LifeTaskLog 生活任务完成记录:孩子 × 任务,家长确认状态流转。
|
|
type LifeTaskLog struct {
|
|
Id int64 `json:"id" orm:"id"`
|
|
ChildId int64 `json:"child_id" orm:"child_id"`
|
|
TaskId int64 `json:"task_id" orm:"task_id"`
|
|
Status int `json:"status" orm:"status"`
|
|
ConfirmPhoto string `json:"confirm_photo" orm:"confirm_photo"`
|
|
ConfirmedAt *gtime.Time `json:"confirmed_at" orm:"confirmed_at"`
|
|
CreatedAt *gtime.Time `json:"created_at" orm:"created_at"`
|
|
}
|