瀏覽代碼

数据中心

hanfucheng 1 年之前
父節點
當前提交
8ba706ca54

+ 3 - 2
src/main/java/com/sooka/sponest/data/generalbusiness/controller/CenterdataTKeyProjectsScheduleController.java

@@ -53,8 +53,9 @@ public class CenterdataTKeyProjectsScheduleController extends BaseController {
     * @date 2023/11/16 9:10
     */
     @GetMapping("/selectPark")
-    public R<List<SysDept>> selectPark(){
+    public R<List<SysDept>> selectPark(SysDept sysDept){
         String deptType = "sys_dept_type_27";
-        return remoteDeptService.selectPark(deptType, SecurityConstants.INNER);
+        sysDept.setDeptType(deptType);
+        return remoteDeptService.selectPark(sysDept);
     }
 }