|
|
@@ -60,6 +60,14 @@ public class SysOrgController {
|
|
|
@Resource
|
|
|
private SysUserService sysUserService;
|
|
|
|
|
|
+ @ApiOperationSupport(order = 1)
|
|
|
+ @ApiOperation("获取组织分页")
|
|
|
+ @GetMapping("/sys/org/queyrList")
|
|
|
+ public CommonResult<List<SysOrg>> queyrList() {
|
|
|
+ return CommonResult.data(sysOrgService.queyrList());
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 获取组织分页
|
|
|
*
|
|
|
@@ -173,6 +181,10 @@ public class SysOrgController {
|
|
|
return CommonResult.data(sysOrgService.treeAll());
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 获取用户选择器
|
|
|
*
|