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:"报告状态:0-无权限;1-有权限"` } type ReportReadRecordResp struct { RecordId int64 }