25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package proto
-
- type BaseResponse struct {
- RespCode int `json:"resp_code"`
- RespMsg string `json:"resp_msg"`
- Data interface{} `json:"data,omitempty"`
- }
-
- type SignResponse struct {
- Data string `json:"data"`
- }
-
- type ZyResponse struct {
- Status int `json:"status"`
- Message string `json:"message"`
- }
-
- // HealthResponse 健康检查响应结构
- type HealthResponse struct {
- Status bool `json:"status"`
- }
|