|
@@ -578,7 +578,8 @@ type DepartmentResp struct {
|
|
}
|
|
}
|
|
|
|
|
|
type DepartmentListResp struct {
|
|
type DepartmentListResp struct {
|
|
- List []*DepartmentResp
|
|
+ Paging *paging.PagingItem `description:"分页数据"`
|
|
|
|
+ List []*DepartmentResp
|
|
}
|
|
}
|
|
type IndustrialDepartmentListResp struct {
|
|
type IndustrialDepartmentListResp struct {
|
|
IndustrialManagementId int `description:"产业Id"`
|
|
IndustrialManagementId int `description:"产业Id"`
|
|
@@ -587,7 +588,7 @@ type IndustrialDepartmentListResp struct {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
-func GetDepartmentList(userId int) (items []*DepartmentResp, err error) {
|
|
+func GetDepartmentList(condition string, userId, startSize, pageSize int) (items []*DepartmentResp, err error) {
|
|
o := orm.NewOrm()
|
|
o := orm.NewOrm()
|
|
sql := `SELECT
|
|
sql := `SELECT
|
|
d.nick_name,
|
|
d.nick_name,
|
|
@@ -603,11 +604,31 @@ func GetDepartmentList(userId int) (items []*DepartmentResp, err error) {
|
|
AND a.article_type_id > 0
|
|
AND a.article_type_id > 0
|
|
AND publish_status = 1
|
|
AND publish_status = 1
|
|
GROUP BY
|
|
GROUP BY
|
|
- d.department_id
|
|
+ d.department_id ` + condition + ` LIMIT ?,?`
|
|
- ORDER BY
|
|
+ _, err = o.Raw(sql, userId, startSize, pageSize).QueryRows(&items)
|
|
- sum_num DESC
|
|
+ return
|
|
- LIMIT 15`
|
|
+}
|
|
- _, err = o.Raw(sql, userId).QueryRows(&items)
|
|
+
|
|
|
|
+
|
|
|
|
+func GetDepartmentlistCount(condition string) (count int, err error) {
|
|
|
|
+ o := orm.NewOrm()
|
|
|
|
+ sql := `SELECT
|
|
|
|
+ count(*) AS count
|
|
|
|
+FROM
|
|
|
|
+ (
|
|
|
|
+ SELECT
|
|
|
|
+ COUNT( 1 ) AS count
|
|
|
|
+ FROM
|
|
|
|
+ cygx_article_department AS d
|
|
|
|
+ INNER JOIN cygx_article AS a ON d.department_id = a.department_id
|
|
|
|
+ WHERE
|
|
|
|
+ 1 = 1
|
|
|
|
+ AND a.article_type_id > 0
|
|
|
|
+ AND publish_status = 1
|
|
|
|
+ GROUP BY
|
|
|
|
+ d.department_id
|
|
|
|
+ ) c `
|
|
|
|
+ err = o.Raw(sql).QueryRow(&count)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|