common_response.go 243 B

12345678910
  1. package http_model
  2. // CommonResponse 接口通用的返回结构体
  3. type CommonResponse struct {
  4. Status int32 `json:"status"`
  5. Message string `json:"message"`
  6. Data interface{} `json:"data"`
  7. }
  8. type CommonRequest interface {
  9. }