|
@@ -510,6 +510,7 @@ type ArticleCollectionResp struct {
|
|
|
IndustryTags string `description:"研选专栏行业标签"`
|
|
|
CompanyTags string `description:"研选专栏公司标签"`
|
|
|
ArticleTypeName string `description:"文章类型名称"`
|
|
|
+ TopTime int `description:"置顶时间"`
|
|
|
}
|
|
|
|
|
|
type IndustrialManagementResp struct {
|
|
@@ -703,7 +704,8 @@ func GetArticleResearchList(condition string, pars []interface{}, startSize, pag
|
|
|
0 AS special_type,
|
|
|
0 AS user_id,
|
|
|
'' AS company_tags,
|
|
|
- '' AS industry_tags
|
|
|
+ '' AS industry_tags,
|
|
|
+ a.top_time
|
|
|
FROM
|
|
|
cygx_article AS a
|
|
|
INNER JOIN cygx_industrial_article_group_management AS mg ON mg.article_id = a.article_id
|
|
@@ -733,7 +735,8 @@ func GetArticleResearchList(condition string, pars []interface{}, startSize, pag
|
|
|
a.type AS special_type,
|
|
|
a.user_id AS user_id,
|
|
|
a.company_tags AS company_tags,
|
|
|
- a.industry_tags AS industry_tags
|
|
|
+ a.industry_tags AS industry_tags,
|
|
|
+ 0 as top_time
|
|
|
FROM
|
|
|
cygx_yanxuan_special AS a
|
|
|
JOIN cygx_yanxuan_special_author AS b ON a.user_id = b.user_id
|