|
@@ -77,7 +77,7 @@ func GetIndustrialManagementAll(uid int, condition, orderSrt string, startSize,
|
|
|
man.*,re.chart_permission_name as permission_name,
|
|
|
MAX(art.article_id ) AS article_id,
|
|
|
man.new_art_publish_date AS update_time , MIN(art.publish_date) AS min_report_time,
|
|
|
- (SELECT follow_type FROM cygx_industry_fllow AS f WHERE f.user_id = ` + strconv.Itoa(uid) + ` AND f.follow_type = 1 AND f.industrial_management_id = man.industrial_management_id) AS follow_type
|
|
|
+ (SELECT follow_type_order FROM cygx_industry_fllow AS f WHERE f.user_id = ` + strconv.Itoa(uid) + ` AND f.industrial_management_id = man.industrial_management_id) AS follow_type_order
|
|
|
FROM
|
|
|
cygx_industrial_management AS man
|
|
|
INNER JOIN cygx_report_mapping AS re ON re.chart_permission_id = man.chart_permission_id
|
|
@@ -89,7 +89,7 @@ func GetIndustrialManagementAll(uid int, condition, orderSrt string, startSize,
|
|
|
AND art.is_class = 1 ` + condition + `
|
|
|
GROUP BY
|
|
|
man.industry_name
|
|
|
- ORDER BY follow_type DESC , ` + orderSrt + ` LIMIT ?,?`
|
|
|
+ ORDER BY follow_type_order DESC , ` + orderSrt + ` LIMIT ?,?`
|
|
|
//AND man.industrial_management_id NOT IN ( SELECT industrial_management_id FROM cygx_industry_top WHERE user_id = ` + strconv.Itoa(uid) + ` )
|
|
|
_, err = o.Raw(sql, startSize, pageSize).QueryRows(&items)
|
|
|
return
|