Browse Source

fix:兼容pdf搜索

zqbao 8 months ago
parent
commit
6fb7b02493
2 changed files with 6 additions and 0 deletions
  1. 2 0
      controllers/report.go
  2. 4 0
      models/response/report.go

+ 2 - 0
controllers/report.go

@@ -587,6 +587,8 @@ func (this *ReportController) Search() {
 			Abstract:            v.Abstract,
 			Stage:               v.Stage,
 			Author:              v.Author,
+			PdfUrl:              v.PdfUrl,
+			ReportType:          v.ReportType,
 		}
 		if v.PublishTime.IsZero() {
 			tmpReport.PublishTime = ""

+ 4 - 0
models/response/report.go

@@ -39,6 +39,8 @@ type ReportCollectListItem struct {
 	Abstract            string    `description:"摘要"`
 	Stage               string    `description:"期数"`
 	Author              string    `description:"作者"`
+	PdfUrl              string    `description:"pdf文件url"`
+	ReportType          int       `description:"报告类型:1:eta报告,2:小程序pdf报告"`
 }
 
 type ReportSearchListView struct {
@@ -55,6 +57,8 @@ type ReportSearchListView struct {
 	Abstract            string `description:"摘要"`
 	Stage               string `description:"期数"`
 	Author              string `description:"作者"`
+	PdfUrl              string `description:"pdf文件url"`
+	ReportType          int    `description:"报告类型:1:eta报告,2:小程序pdf报告"`
 }
 
 type ReportSearchResp struct {