|
@@ -24,9 +24,9 @@ type UserWithdrawalReq struct {
|
|
EndTime int64 `json:"end_time"` // 结束时间
|
|
EndTime int64 `json:"end_time"` // 结束时间
|
|
Page int `json:"page"` // 页码
|
|
Page int `json:"page"` // 页码
|
|
Size int `json:"size"` // 每页数量
|
|
Size int `json:"size"` // 每页数量
|
|
- Withdrawal string `json:"withdrawal" bson:"withdrawal"` // 提现 1:提现成功 2:提现中 3:提现失败 4:拒绝提现
|
|
|
|
|
|
+ Withdrawal int `json:"withdrawal" bson:"withdrawal"` // 提现 1:提现成功 2:提现中 3:提现失败 4:拒绝提现
|
|
|
|
+ Status int `json:"status" bson:"status"` // 0:未审核 1:审核通过 2:审核失败
|
|
Address string `json:"address" bson:"address"` // 地址
|
|
Address string `json:"address" bson:"address"` // 地址
|
|
- Status string `json:"status" bson:"status"` // 0:未审核 1:审核通过 2:审核失败
|
|
|
|
}
|
|
}
|
|
|
|
|
|
type UserWithdrawalStatus struct {
|
|
type UserWithdrawalStatus struct {
|