调整绑定手机号
This commit is contained in:
@ -32,6 +32,9 @@ type RewardCallbackColumns struct {
|
||||
CustomInfo string // 透传字段 (json串)
|
||||
AppId string // 业务 id(标识业务方,由游戏人生提供)
|
||||
InnerOrderId string // 系统内部订单ID
|
||||
CreatedAt string //
|
||||
UpdatedAt string //
|
||||
DeletedAt string //
|
||||
}
|
||||
|
||||
// rewardCallbackColumns holds the columns for the table reward_callback.
|
||||
@ -47,6 +50,9 @@ var rewardCallbackColumns = RewardCallbackColumns{
|
||||
CustomInfo: "custom_info",
|
||||
AppId: "app_id",
|
||||
InnerOrderId: "inner_order_id",
|
||||
CreatedAt: "created_at",
|
||||
UpdatedAt: "updated_at",
|
||||
DeletedAt: "deleted_at",
|
||||
}
|
||||
|
||||
// NewRewardCallbackDao creates and returns a new DAO object for table data access.
|
||||
|
||||
@ -35,7 +35,7 @@ type UserTasksColumns struct {
|
||||
GameId string // 游戏 id
|
||||
TaskType string // 1: 每日任务 3: 周期任务
|
||||
UserTimes string // 用户完成次数
|
||||
BindType string // 当前账号类型
|
||||
BindType string // 1:qq 2:wx
|
||||
}
|
||||
|
||||
// userTasksColumns holds the columns for the table user_tasks.
|
||||
|
||||
Reference in New Issue
Block a user