Package net.risesoft.controller
Class OrgUnitController
- java.lang.Object
-
- net.risesoft.controller.OrgUnitController
-
@RestController @RequestMapping("/admin/orgUnit") public class OrgUnitController extends Object组织管理- Author:
- mengjuhua
-
-
Constructor Summary
Constructors Constructor Description OrgUnitController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.Organization>>getTenantORGOrganization(String tenantId)获取租户组织机构列表net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.Organization>>getTenantTreeByTenantType()根据租户类型获取所有租户信息net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.OrgUnit>>getTree(String tenantId, String id, net.risesoft.enums.platform.OrgTreeTypeEnum treeType)获取组织架构树
-
-
-
Method Detail
-
getTenantORGOrganization
@RiseLog(moduleName="\u65e5\u5fd7\u7cfb\u7edf", operationName="\u83b7\u53d6\u79df\u6237\u7ec4\u7ec7\u673a\u6784\u5217\u8868", logLevel=RSLOG) @RequestMapping("/getTenantOrganization") public net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.Organization>> getTenantORGOrganization(String tenantId)
获取租户组织机构列表- Parameters:
tenantId- 租户id- Returns:
Y9Result<List<Organization>>
-
getTenantTreeByTenantType
@RiseLog(moduleName="\u65e5\u5fd7\u7cfb\u7edf", operationName="\u6839\u636e\u79df\u6237\u7c7b\u578b\u83b7\u53d6\u6240\u6709\u79df\u6237\u4fe1\u606f", logLevel=RSLOG) @RequestMapping("/getTenantTreeByTenantType") public net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.Organization>> getTenantTreeByTenantType()
根据租户类型获取所有租户信息- Returns:
Y9Result<List<Organization>>
-
getTree
@RiseLog(moduleName="\u65e5\u5fd7\u7cfb\u7edf", operationName="\u83b7\u53d6\u7ec4\u7ec7\u67b6\u6784\u6811", logLevel=RSLOG) @RequestMapping("/getTree") public net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.OrgUnit>> getTree(String tenantId, @RequestParam String id, @RequestParam net.risesoft.enums.platform.OrgTreeTypeEnum treeType)
获取组织架构树- Parameters:
tenantId- 租户idid- 父节点idtreeType- 数类型- Returns:
Y9Result<List<OrgUnit>>
-
-