api.go 164 B

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