- package request
- type ReportListForm struct {
- PageSize int `form:"PageSize" description:"每页数据量"`
- CurrentIndex int `form:"CurrentIndex" description:"页码"`
- Keywords string `form:"Keywords" description:"搜索关键词"`
- ClassifyId int `form:"ClassifyId" description:"分类ID"`
- }
- type ReportReadRecordReq struct {
- RecordId int `description:"记录ID"`
- ReportId int `description:"报告ID"`
- ReportSource int `description:"报告来源:1-研报中心;2-文档管理库"`
- }
|