user_withdrawal.go 1.4 KB

12345678910111213141516171819202122232425262728
  1. package entity
  2. // UserWithdrawalResp \game\game_cluster\nodes\webadmin\entity\user_withdrawal.go
  3. type UserWithdrawalResp struct {
  4. UserName string `json:"user_name" bson:"user_name"` // 用户ID
  5. NickName string `json:"nick_name" bson:"nick_name"` // 昵称
  6. Status int `json:"status" bson:"status"` // 0:未审核 1:审核通过 2:审核失败
  7. Amount int `json:"amount" bson:"amount"` // 提现金额
  8. AfterAmount int `json:"after_amount" bson:"after_amount"` // 提现后金额
  9. Type int `json:"type" bson:"type"` // 货币内型
  10. Address string `json:"address" bson:"address"` // 地址
  11. CreateAt int64 `json:"createAt" bson:"createAt"` // 提现时间
  12. UpdateAt int64 `json:"updateAt" bson:"updateAt"`
  13. }
  14. type UserWithdrawalReq struct {
  15. UserName string `json:"user_name" bson:"user_name"` // 用户ID
  16. NickName string `json:"nick_name" bson:"nick_name"` // 昵称
  17. StartTime int64 `json:"start_time"` // 开始时间
  18. EndTime int64 `json:"end_time"` // 结束时间
  19. Page int `json:"page"` // 页码
  20. Size int `json:"size"` // 每页数量
  21. }
  22. type UserWithdrawalStatus struct {
  23. UserName string `json:"user_name" bson:"user_name"` // 用户ID
  24. Status int `json:"status" bson:"status"` // 0:未审核 1:审核通过 2:审核失败
  25. }