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

15 lines
599 B
Go

package entity
import "github.com/gogf/gf/v2/os/gtime"
// UserRouteLog 决策路径流水:孩子每步选择一条,终局一条,支撑学习报告与内容优化。
type UserRouteLog struct {
Id int64 `json:"id" orm:"id"`
ChildId int64 `json:"child_id" orm:"child_id"`
LevelId int64 `json:"level_id" orm:"level_id"`
NodeId int64 `json:"node_id" orm:"node_id"`
OptionId int64 `json:"option_id" orm:"option_id"`
ResultType int `json:"result_type" orm:"result_type"`
CreatedAt *gtime.Time `json:"created_at" orm:"created_at"`
}