common_response.go 194 B

123456789
  1. package http_model
  2. type CommonResponse struct {
  3. Status int32 `json:"status"`
  4. Message string `json:"message"`
  5. Data interface{} `json:"data"`
  6. }
  7. type CommonRequest interface {
  8. }