GetAllwithdrawValueRequest.go 525 B

1234567891011121314151617181920
  1. package http_model
  2. type GetAllwithdrawValueRequest struct {
  3. }
  4. type GetAllwithdrawValueData struct {
  5. WithdrawValue float64 `json:"withdraw_value"`
  6. TalentWithdrawvalue float64 `json:"talent_withdraw_value"`
  7. AccumulateValue float64 `json:"accumulate_value"`
  8. }
  9. func NewGetAllwithdrawValueRequest() *GetAllwithdrawValueRequest {
  10. return new(GetAllwithdrawValueRequest)
  11. }
  12. func NewGetAllwithdrawValueResponse() *CommonResponse {
  13. resp := new(CommonResponse)
  14. resp.Data = new(GetAllwithdrawValueData)
  15. return resp
  16. }