set_serveratio.go 296 B

12345678910111213
  1. package http_model
  2. type SetServeratioRequest struct {
  3. Ratio string `json:"ratio"`
  4. }
  5. type SetServeratioResponse struct {
  6. }
  7. func NewSetServeratioRequest() *SetServeratioRequest { return new(SetServeratioRequest) }
  8. func NewSetServeratioResponse() *CommonResponse {
  9. return new(CommonResponse)
  10. }