1234567891011121314151617181920 |
- package response
- import (
- "eta/eta_mini_api/models"
- "github.com/rdlucklib/rdluck_tools/paging"
- )
- type ReportList struct {
- List []*models.UnionReportItem
- Paging *paging.PagingItem
- }
- type ReportDetailResp struct {
- Report *models.ReportDetail `description:"报告"`
- Status int `description:"报告状态"`
- }
- type ReportReadRecordResp struct {
- RecordId int64
- }
|