Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

22 строки
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. }