|
@@ -25,8 +25,8 @@ func ListHome(userId, maxPermission, userPermission int, permissionStr string) (
|
|
|
o.Using("rddp")
|
|
|
//sql := `SELECT id,classify_name FROM classify WHERE parent_id=0 ORDER BY create_time ASC `
|
|
|
|
|
|
- //暂时将双周报、月报隐藏
|
|
|
- sql := `SELECT id,classify_name FROM classify WHERE parent_id=0 and classify_name not IN("双周报","月报") ORDER BY create_time ASC `
|
|
|
+ //暂时将双周报、月报、晨报、周报隐藏
|
|
|
+ sql := `SELECT id,classify_name FROM classify WHERE parent_id=0 and classify_name not IN("双周报","月报","晨报","周报") ORDER BY create_time ASC `
|
|
|
_, err = o.Raw(sql).QueryRows(&items)
|
|
|
if err != nil {
|
|
|
fmt.Println("Get classify Err:" + err.Error())
|