瀏覽代碼

Merge branch 'pool/229' into debug

Roc 7 月之前
父節點
當前提交
4a180edae9
共有 2 個文件被更改,包括 3 次插入2 次删除
  1. 2 2
      controllers/smart_report.go
  2. 1 0
      models/report.go

+ 2 - 2
controllers/smart_report.go

@@ -149,9 +149,9 @@ func (this *SmartReportController) WechatShareDetail() {
 	var shareTitle string
 	// 研报分享抬头
 	if utils.BusinessCode == "E2023080700" || utils.BusinessCode == "E2023080900" || utils.BusinessCode == "E2023080901" {
-		shareTitle = "【第" + strconv.Itoa(item.Stage) + "期|FICC】" + "(" + dateStr + ")"
+		shareTitle = "【第" + strconv.Itoa(item.Stage) + "期|FICC】" + item.Title + "(" + dateStr + ")"
 	} else {
-		shareTitle = "【第" + strconv.Itoa(item.Stage) + "期】" + "(" + dateStr + ")"
+		shareTitle = "【第" + strconv.Itoa(item.Stage) + "期】" + item.Title + "(" + dateStr + ")"
 	}
 	if v, ok := conf[models.BusinessConfH5ReportShareImg]; ok {
 		resp.H5ReportShareImg = v

+ 1 - 0
models/report.go

@@ -20,6 +20,7 @@ type Report struct {
 	ModifyTime         string `description:"修改时间"`
 	State              int    `description:"1:未发布,2:已发布"`
 	PublishTime        string `description:"发布时间"`
+	PrePublishTime     string `description:"预发布时间"`
 	Stage              int    `description:"期数"`
 	MsgIsSend          int    `description:"消息是否已发送,0:否,1:是"`
 	Content            string `description:"内容"`