s_common.go 194 B

12345678
  1. package schema
  2. // HttpResponse 接口统一返回结构
  3. type HttpResponse struct {
  4. Code int `json:"code"`
  5. Message string `json:"message"`
  6. Data interface{} `json:"data"`
  7. }