|
@@ -210,6 +210,8 @@ public class SysOrgController {
|
|
|
@GetMapping("/sys/org/orgUserTreeSelector")
|
|
@GetMapping("/sys/org/orgUserTreeSelector")
|
|
|
public CommonResult<List<Map<String,Object>>> orgUserTreeSelector(HttpServletRequest req) {
|
|
public CommonResult<List<Map<String,Object>>> orgUserTreeSelector(HttpServletRequest req) {
|
|
|
Map param=new HashMap();
|
|
Map param=new HashMap();
|
|
|
|
|
+ param.put("category",req.getParameter("category"));
|
|
|
|
|
+
|
|
|
Map result = new HashMap();
|
|
Map result = new HashMap();
|
|
|
String collegeParentId = "0";
|
|
String collegeParentId = "0";
|
|
|
if(StringUtils.isNotEmpty(req.getParameter("collegeParentId")))collegeParentId=req.getParameter("collegeParentId");
|
|
if(StringUtils.isNotEmpty(req.getParameter("collegeParentId")))collegeParentId=req.getParameter("collegeParentId");
|
|
@@ -260,6 +262,7 @@ public class SysOrgController {
|
|
|
@GetMapping("/sys/org/orgUserTreeRespectively")
|
|
@GetMapping("/sys/org/orgUserTreeRespectively")
|
|
|
public CommonResult<List<Map<String, Object>>> orgUserTreeRespectively(HttpServletRequest req) {
|
|
public CommonResult<List<Map<String, Object>>> orgUserTreeRespectively(HttpServletRequest req) {
|
|
|
Map param =new HashMap();
|
|
Map param =new HashMap();
|
|
|
|
|
+ param.put("category",req.getParameter("category"));
|
|
|
String collegeParentId="0";
|
|
String collegeParentId="0";
|
|
|
if(StringUtils.isNotEmpty(req.getParameter("collegeParentId")))collegeParentId=req.getParameter("collegeParentId");
|
|
if(StringUtils.isNotEmpty(req.getParameter("collegeParentId")))collegeParentId=req.getParameter("collegeParentId");
|
|
|
param.put("collegeParentId",collegeParentId );
|
|
param.put("collegeParentId",collegeParentId );
|