娃娃兌換記錄修改

This commit is contained in:
by 2024-09-19 18:31:12 +08:00
parent 9cc5d30032
commit f2497b77d3
1 changed files with 9 additions and 9 deletions

View File

@ -17,8 +17,8 @@ type BagChangeDollLog struct {
Addr string //地址 Addr string //地址
State int32 //状态 0.默认 1.成功 2.失败 3.未发货准备发货 State int32 //状态 0.默认 1.成功 2.失败 3.未发货准备发货
Remark string //备注信息 Remark string //备注信息
CreateTs time.Time //订单生成时间 CreateTs int64 //订单生成时间
OpTs time.Time //订单最后操作时间 OpTs int64 //订单最后操作时间
Ts int64 Ts int64
} }
@ -44,8 +44,8 @@ func NewDbBagChangeDoll(platform string, snid, itemId, itemNum int32, state int3
UserTel: userTel, UserTel: userTel,
Addr: addr, Addr: addr,
Remark: remark, Remark: remark,
CreateTs: t, CreateTs: t.Unix(),
OpTs: t, OpTs: t.Unix(),
Ts: t.Unix(), Ts: t.Unix(),
} }
} }