yujian
2020-01-08 819f08fcbe49d94d5d359d7f155861ca2e8abebb
fanli/src/main/java/com/yeshi/fanli/controller/apph5/AppH5HelpCenterController.java
@@ -67,13 +67,11 @@
         
         if (pageId == null)
            pageId = 0L;
         List<HelpCenter> resultList = new ArrayList<>();
         
         List<HelpCenter> list = helpCenterService.listValid(pageId, pageSize, key, cid);
         if (list == null) {
            pageId = 0L;
            list = new ArrayList<HelpCenter>();
         } else if (list.size() == 0) {
         if (list == null || list.size() == 0) {
            pageId = 0L;
         } else {
            // 添加列表
@@ -165,9 +163,7 @@
         List<HelpClass> resultList = new ArrayList<>();
         
         List<HelpClass> list = helpClassService.getClassByState(1);
         if (list == null || list.size() == 0) {
            list = new ArrayList<>();
         } else {
         if (list != null && list.size() > 0) {
            resultList.addAll(list);
         }