api.go 189 B

123456789101112
  1. package api
  2. type CommonReq struct{}
  3. type CommonRes struct {
  4. Data interface{} `json:"data"`
  5. }
  6. type PagerRes struct {
  7. Data interface{} `json:"data"`
  8. Pager interface{} `json:"pager"`
  9. }