1234567891011121314151617181920 |
- package http_model
- type GetAllwithdrawValueRequest struct {
- }
- type GetAllwithdrawValueData struct {
- WithdrawValue float64 `json:"withdraw_value"`
- TalentWithdrawvalue float64 `json:"talent_withdraw_value"`
- AccumulateValue float64 `json:"accumulate_value"`
- }
- func NewGetAllwithdrawValueRequest() *GetAllwithdrawValueRequest {
- return new(GetAllwithdrawValueRequest)
- }
- func NewGetAllwithdrawValueResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(GetAllwithdrawValueData)
- return resp
- }
|