user_report.go 345 B

123456789101112
  1. package company_user
  2. import (
  3. "hongze/hongze_open_api/models/tables"
  4. "hongze/hongze_open_api/utils"
  5. )
  6. // UserReportListResp 用户阅读数据列表返回结构体
  7. type UserReportListResp struct {
  8. Paging *utils.PagingItem `description:"分页数据" json:"paging"`
  9. List []*tables.ViewReportList `description:"数据列表" json:"list"`
  10. }