You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
425B

  1. package proto
  2. type BaseResponse struct {
  3. RespCode int `json:"resp_code"`
  4. RespMsg string `json:"resp_msg"`
  5. Data interface{} `json:"data,omitempty"`
  6. }
  7. type SignResponse struct {
  8. Data string `json:"data"`
  9. }
  10. type ZyResponse struct {
  11. Status int `json:"status"`
  12. Message string `json:"message"`
  13. }
  14. // HealthResponse 健康检查响应结构
  15. type HealthResponse struct {
  16. Status bool `json:"status"`
  17. }