get_serveratio.go 296 B

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