123456789101112131415161718 |
- package http_model
- type GetWithdrawValueRequest struct {
- }
- type ALlWithdrawValue struct {
- AllWithdrawValue float64 `json:"AllWithdraw_value"`
- }
- func NewGetWithdrawValueRequest() *GetWithdrawValueRequest {
- return new(GetWithdrawValueRequest)
- }
- func NewGetWithdrawValueResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(ALlWithdrawValue)
- return resp
- }
|