Files
arenax-server/internal/model/do/reward_waters.go

26 lines
1.1 KiB
Go

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// RewardWaters is the golang structure of table reward_waters for DAO operations like Where/Data.
type RewardWaters struct {
g.Meta `orm:"table:reward_waters, do:true"`
Id interface{} //
OrderId interface{} // 订单号
Recvuid interface{} // 用户账号
TaskId interface{} // 任务 id
Water interface{} // 兑换流水
Status interface{} // 兑换状态 1:奖励发放成功 2:奖励兑换失败(礼包发放背包环节成功,需重新引导领奖) 3:针对只需要发背包,然后引导用户到人生应用背包领奖的奖励类型,发奖成功了 4:water错误(一般是 orderid),不做兑换操作
CreatedAt *gtime.Time //
UpdatedAt *gtime.Time //
DeletedAt *gtime.Time //
GameId interface{} // 游戏唯一 id
}