- package company_user
- import (
- "hongze/hongze_open_api/models/tables"
- "hongze/hongze_open_api/utils"
- )
- // UserReportListResp 用户阅读数据列表返回结构体
- type UserReportListResp struct {
- Paging *utils.PagingItem `description:"分页数据" json:"paging"`
- List []*tables.ViewReportList `description:"数据列表" json:"list"`
- }
|