调整绑定手机号

This commit is contained in:
chy
2025-07-10 16:37:10 +08:00
parent c63553df32
commit 49fd919fe1
8 changed files with 39 additions and 14 deletions

View File

@ -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.

View File

@ -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.