123456789101112131415161718 |
- package http_model
- type GetWithdrawNumsRequest struct {
- }
- type WithdrawNums struct {
- WithdrawNums int `json:"withdraw_nums"`
- }
- func NewGetWithdrawNumsRequest() *GetWithdrawNumsRequest {
- return new(GetWithdrawNumsRequest)
- }
- func NewGetWithdrawNumsResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(WithdrawNums)
- return resp
- }
|