12345678910111213141516171819 |
- package http_model
- type GetWithdrawCountRequest struct {
- }
- type WithdrawCountResponse struct {
- PreWithdrawNums int64 `json:"preWithdraw_nums"`
- WithdrawNums int64 `json:"Withdraw_nums"`
- FailNums int64 `json:"fail_nums"`
- }
- func NewGetWithdrawCountRequest() *GetWithdrawCountRequest {
- return new(GetWithdrawCountRequest)
- }
- func NewGetWithdrawCountResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(ReviewNums)
- return resp
- }
|