user_withdrawal.go 1.2 KB

1234567891011121314151617181920212223242526
  1. package entity
  2. // UserWithdrawalResp \game\game_cluster\nodes\webadmin\entity\user_withdrawal.go
  3. type UserWithdrawalResp struct {
  4. UserName string `json:"userName" bson:"userName"` // 用户名字
  5. NickName string `json:"nickName" bson:"nickName"` // 昵称
  6. Status int `json:"status" bson:"status"` // 0:未审核 1:审核通过 2:审核失败
  7. Amount int `json:"amount" bson:"amount"` //
  8. AfterAmount int `json:"afterAmount" 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:"userName" bson:"userName"` // 用户名字
  16. NickName string `json:"nickName" bson:"nickName"` // 昵称
  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 UserWithdrawal struct {
  23. }