|
@@ -606,17 +606,24 @@ type ArticleResearchResp struct {
|
|
|
}
|
|
|
|
|
|
// 获取我的日程数量
|
|
|
-func GetArticleResearchCount(condition string, pars []interface{}) (count int, err error) {
|
|
|
+func GetArticleResearchCount(condition string, pars []interface{}, needYanxuanSpecial bool) (count int, err error) {
|
|
|
o := orm.NewOrm()
|
|
|
sqlCount := `SELECT COUNT( 1 ) AS count FROM
|
|
|
cygx_article AS a
|
|
|
WHERE
|
|
|
1 = 1 AND a.publish_status = 1` + condition
|
|
|
+ if needYanxuanSpecial{
|
|
|
+ sqlCount = `SELECT SUM(count) AS count FROM (`+sqlCount+`
|
|
|
+ UNION ALL
|
|
|
+ SELECT COUNT( 1 ) AS count FROM
|
|
|
+ cygx_yanxuan_special AS a WHERE
|
|
|
+ 1 = 1 AND a.status = 3) AS c`
|
|
|
+ }
|
|
|
err = o.Raw(sqlCount, pars).QueryRow(&count)
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-func GetArticleResearchList(condition string, pars []interface{}, startSize, pageSize, userId int) (items []*ArticleCollectionResp, err error) {
|
|
|
+func GetArticleResearchList(condition string, pars []interface{}, startSize, pageSize, userId int, needYanxuanSpecial bool) (items []*ArticleCollectionResp, err error) {
|
|
|
o := orm.NewOrm()
|
|
|
sql := `SELECT
|
|
|
a.article_id,
|
|
@@ -645,7 +652,8 @@ func GetArticleResearchList(condition string, pars []interface{}, startSize, pag
|
|
|
sql += condition
|
|
|
}
|
|
|
sql += ` GROUP BY a.article_id `
|
|
|
- sql += `UNION ALL
|
|
|
+ if needYanxuanSpecial {
|
|
|
+ sql += `UNION ALL
|
|
|
SELECT
|
|
|
a.id AS article_id,
|
|
|
a.title AS title,
|
|
@@ -666,9 +674,13 @@ func GetArticleResearchList(condition string, pars []interface{}, startSize, pag
|
|
|
JOIN cygx_yanxuan_special_author AS b ON a.user_id = b.user_id
|
|
|
WHERE
|
|
|
1 = 1 AND a.status = 3 `
|
|
|
+ sql += ` ORDER BY publish_date DESC LIMIT ?,? `
|
|
|
+ _, err = o.Raw(sql, userId, userId, pars, startSize, pageSize).QueryRows(&items)
|
|
|
+ } else {
|
|
|
+ sql += ` ORDER BY publish_date DESC LIMIT ?,? `
|
|
|
+ _, err = o.Raw(sql, userId, pars, startSize, pageSize).QueryRows(&items)
|
|
|
+ }
|
|
|
|
|
|
- sql += ` ORDER BY publish_date DESC LIMIT ?,? `
|
|
|
- _, err = o.Raw(sql, userId, userId, pars, startSize, pageSize).QueryRows(&items)
|
|
|
return
|
|
|
}
|
|
|
|