getwithdrawcountrequest.go 463 B

12345678910111213141516171819
  1. package http_model
  2. type GetWithdrawCountRequest struct {
  3. }
  4. type WithdrawCountResponse struct {
  5. PreWithdrawNums int64 `json:"preWithdraw_nums"`
  6. WithdrawNums int64 `json:"Withdraw_nums"`
  7. FailNums int64 `json:"fail_nums"`
  8. }
  9. func NewGetWithdrawCountRequest() *GetWithdrawCountRequest {
  10. return new(GetWithdrawCountRequest)
  11. }
  12. func NewGetWithdrawCountResponse() *CommonResponse {
  13. resp := new(CommonResponse)
  14. resp.Data = new(ReviewNums)
  15. return resp
  16. }