123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package entity
- // UserWithdrawalResp \game\game_cluster\nodes\webadmin\entity\user_withdrawal.go
- type UserWithdrawalResp struct {
- Id string `json:"id" bson:"_id"` // Id
- UserName string `json:"user_name" bson:"userName"` // 用户ID
- NickName string `json:"nick_name" bson:"nickName"` // 昵称
- Status int `json:"status" bson:"status"` // 0:未审核 1:审核通过 2:审核失败
- Reason string `json:"reason" bson:"reason"` // 提现原因
- Withdrawal int `json:"withdrawal" bson:"withdrawal"` // 提现 1:提现成功 2:提现中 3:提现失败 4:拒绝提现
- Amount int `json:"amount" bson:"amount"` // 提现金额
- AfterAmount int `json:"after_amount" bson:"after_amount"` // 提现后金额
- Type interface{} `json:"type" bson:"type"` // 货币内型
- Address string `json:"address" bson:"address"` // 地址
- CreateAt interface{} `json:"createAt" bson:"createAt"` // 提现时间
- UpdateAt interface{} `json:"updateAt" bson:"updateAt"`
- }
- type UserWithdrawalReq struct {
- UserName string `json:"user_name" bson:"user_name"` // 用户ID
- NickName string `json:"nick_name" bson:"nick_name"` // 昵称
- ID string `json:"id" bson:"id"` // ID
- StartTime int64 `json:"start_time"` // 开始时间
- EndTime int64 `json:"end_time"` // 结束时间
- Page int `json:"page"` // 页码
- Size int `json:"size"` // 每页数量
- Withdrawal string `json:"withdrawal" bson:"withdrawal"` // 提现 1:提现成功 2:提现中 3:提现失败 4:拒绝提现
- Address string `json:"address" bson:"address"` // 地址
- Status string `json:"status" bson:"status"` // 0:未审核 1:审核通过 2:审核失败
- }
- type UserWithdrawalStatus struct {
- UserName string `json:"user_name" bson:"user_name" binding:"required"` // 用户ID
- Status int `json:"status" bson:"status" ` // 0:未审核 1:审核通过 2:审核失败
- Withdrawal int `json:"withdrawal" bson:"withdrawal"` // 提现 1:提现成功 2:提现中 3:提现失败 4:拒绝提现
- }
- type UserWithdrawalStatusBatch struct {
- ID []string `json:"id" bson:"id" binding:"required"` // 用户ID
- Status int `json:"status" bson:"status"` // 0:未审核 1:审核通过 2:审核失败
- Withdrawal int `json:"withdrawal" bson:"withdrawal"` // 提现 1:提现成功 2:提现中 3:提现失败 4:拒绝提现
- }
|