Browse Source

手机端请求运管中心的通讯录

Memory_LG 11 hours ago
parent
commit
0ffb94379f

+ 1 - 1
src/main/java/com/sooka/sponest/mobile/appbigdata/controller/AppBigDataController.java

@@ -555,7 +555,7 @@ public class AppBigDataController extends VisuBaseService {
     @ApiOperation(value = "根据部门id获取通讯录列表", notes = "根据部门id获取通讯录列表")
     @GetMapping("/getCommunicationByDeptId")
     public AjaxResult getCommunicationByDeptId(String deptId, int pageNum, int pageSize, String selectParam) {
-        return remoteDataBaseService.getCommunicationByDeptId(deptId, selectParam, pageNum, pageSize);
+        return remoteSystemBaseService.getCommunicationByDeptId(deptId, selectParam, pageNum, pageSize);
     }
 
     /**

+ 3 - 0
src/main/java/com/sooka/sponest/mobile/remoteapi/RemoteSystemBaseService.java

@@ -258,4 +258,7 @@ public interface RemoteSystemBaseService {
 
     @PutMapping("/user/profile/updateAppPwd")
     AjaxResult updatPwd(@RequestBody AppUpPwd appUpPwd);
+
+    @GetMapping("/communication/getCommunicationByDeptId")
+    public AjaxResult getCommunicationByDeptId(@RequestParam(value = "deptId") String deptId, @RequestParam(value = "selectParam") String selectParam, @RequestParam(value = "pageNum") int pageNum, @RequestParam(value = "pageSize") int pageSize);
 }

+ 5 - 0
src/main/java/com/sooka/sponest/mobile/remoteapi/factory/RemoteSystemBaseServiceFallbackFactory.java

@@ -204,6 +204,11 @@ public class RemoteSystemBaseServiceFallbackFactory implements FallbackFactory<R
             public AjaxResult updatPwd(AppUpPwd appUpPwd) {
                 return null;
             }
+
+            @Override
+            public AjaxResult getCommunicationByDeptId(String deptId, String selectParam, int pageNum, int pageSize) {
+                return null;
+            }
         };
     }