12 lines
409 B
Go
12 lines
409 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
// UserCollection 计策卡收集:孩子 × 计策,计策单元全关卡通关后解锁。
|
|
type UserCollection struct {
|
|
Id int64 `json:"id" orm:"id"`
|
|
UserId int64 `json:"user_id" orm:"user_id"`
|
|
StrategyId int64 `json:"strategy_id" orm:"strategy_id"`
|
|
UnlockedAt *gtime.Time `json:"unlocked_at" orm:"unlocked_at"`
|
|
}
|