my_report.go 244 B

12345678910111213141516
  1. package response
  2. import (
  3. "eta/eta_mini_api/models"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. type MyReportListResp struct {
  7. List []*models.MyReport
  8. Paging *paging.PagingItem
  9. }
  10. type MyReportIsCollectResp struct {
  11. IsCollect bool
  12. }