common.go 275 B

12345678910111213
  1. // Copyright 2019 autocareai.com. All rights reserved.
  2. // Use of this source code is governed by autocareai.com.
  3. package apis
  4. type QueryRequest struct {
  5. Code string `json:"code"`
  6. Params string `json:"params"`
  7. }
  8. type QueryResponse struct {
  9. Data string `json:"data"`
  10. }