|
|
@@ -83,6 +83,18 @@ public class DeptController extends BaseController {
|
|
|
return HttpResult.ok(deptTree);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 机构信息查询
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @IgnoreTenant
|
|
|
+ @GetMapping(value = { "/deptGetPlatform"})
|
|
|
+ @Operation(summary = "平台机构信息查询")
|
|
|
+ public HttpResult deptGetPlatform(String id) {
|
|
|
+ return HttpResult.ok(sysDeptService.queryById(id));
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 机构信息查询
|
|
|
* @param id
|