您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021
  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. }