GetWithdrawNumsRequest.go 356 B

123456789101112131415161718
  1. package http_model
  2. type GetWithdrawNumsRequest struct {
  3. }
  4. type WithdrawNums struct {
  5. WithdrawNums int `json:"withdraw_nums"`
  6. }
  7. func NewGetWithdrawNumsRequest() *GetWithdrawNumsRequest {
  8. return new(GetWithdrawNumsRequest)
  9. }
  10. func NewGetWithdrawNumsResponse() *CommonResponse {
  11. resp := new(CommonResponse)
  12. resp.Data = new(WithdrawNums)
  13. return resp
  14. }