report.go 387 B

1234567891011121314151617181920
  1. package response
  2. import (
  3. "eta/eta_mini_api/models"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. type ReportList struct {
  7. List []*models.UnionReportItem
  8. Paging *paging.PagingItem
  9. }
  10. type ReportDetailResp struct {
  11. Report *models.ReportDetail `description:"报告"`
  12. Status int `description:"报告状态"`
  13. }
  14. type ReportReadRecordResp struct {
  15. RecordId int64
  16. }