|
@@ -412,6 +412,7 @@ type IndustrialManagementHotResp struct {
|
|
|
IsNew bool `description:"是否新标签"`
|
|
|
IsHot bool `description:"是否新标签"`
|
|
|
PublishDate string `description:"发布时间"`
|
|
|
+ MinReportTime string `description:"报告最早发布时间"`
|
|
|
ArticleReadNum int `description:"文章阅读数量"`
|
|
|
Source int `description:"来源 1:弘则资源包(报告)、2:研选主题(报告)"`
|
|
|
IndustrialSubjectList []*IndustrialSubject `description:"标的列表"`
|
|
@@ -732,6 +733,7 @@ func GetSearchResourceList(condition string, startSize, pageSize int) (items []*
|
|
|
m.industry_name,
|
|
|
m.industrial_management_id,
|
|
|
MAX( a.publish_date ) as publish_date_order,
|
|
|
+ MIN(a.publish_date) AS min_report_time,
|
|
|
date_format( MAX( a.publish_date ), '%Y-%m-%d' ) AS publish_date
|
|
|
FROM
|
|
|
cygx_industrial_management AS m
|
|
@@ -866,10 +868,12 @@ type TimeLineReportItem struct {
|
|
|
IsHaveVideo bool `description:"是否包含视频"`
|
|
|
ImgUrlPc string `description:"pc图片"`
|
|
|
SubCategoryName string `description:"二级分类"`
|
|
|
+ IsRed bool `description:"是否标红"`
|
|
|
+ Readnum int `description:"阅读数量"`
|
|
|
}
|
|
|
|
|
|
//获取产业报告+晨会点评列表
|
|
|
-func GetTimeLineReportIndustrialList(industrialManagementId, startSize, pageSize int) (items []*TimeLineReportItem, err error) {
|
|
|
+func GetTimeLineReportIndustrialList(userId, industrialManagementId, startSize, pageSize int) (items []*TimeLineReportItem, err error) {
|
|
|
o := orm.NewOrm()
|
|
|
sql := `SELECT
|
|
|
*
|
|
@@ -881,7 +885,8 @@ FROM
|
|
|
a.publish_date AS publish_time,
|
|
|
a.video_url,
|
|
|
a.sub_category_name,
|
|
|
- '' AS content
|
|
|
+ '' AS content,
|
|
|
+ ( SELECT COUNT( 1 ) FROM cygx_article_history_record AS rec WHERE rec.user_id = ` + strconv.Itoa(userId) + ` AND rec.article_id = a.article_id ) AS readnum
|
|
|
FROM
|
|
|
cygx_article AS a
|
|
|
INNER JOIN cygx_industrial_article_group_management AS man_g ON man_g.article_id = a.article_id
|
|
@@ -895,7 +900,8 @@ FROM
|
|
|
mm.meeting_time AS publish_time,
|
|
|
'' AS video_url,
|
|
|
'时间线' AS sub_category_name,
|
|
|
- mmc.content
|
|
|
+ mmc.content,
|
|
|
+ 0 AS readnum
|
|
|
FROM
|
|
|
cygx_morning_meeting_review_chapter AS mmc
|
|
|
INNER JOIN cygx_morning_meeting_reviews AS mm
|
|
@@ -912,7 +918,7 @@ FROM
|
|
|
}
|
|
|
|
|
|
type ArticleIdReq struct {
|
|
|
- ArticleId int `description:"文章id"`
|
|
|
- PlaySeconds int `description:"播放时长"`
|
|
|
- PageRouter string `description:"页面路径"`
|
|
|
-}
|
|
|
+ ArticleId int `description:"文章id"`
|
|
|
+ PlaySeconds int `description:"播放时长"`
|
|
|
+ PageRouter string `description:"页面路径"`
|
|
|
+}
|