接口 TenantSystemApi
-
@Validated @Deprecated public interface TenantSystemApi
已过时。租户系统组件- 从以下版本开始:
- 9.6.0
- 作者:
- dingzhaojun, qinman, mengjuhua
- Date:
- 2022/2/10
-
-
方法概要
所有方法 实例方法 抽象方法 已过时的方法 修饰符和类型 方法 说明 List<net.risesoft.model.platform.System>listSystemByTenantId(@NotBlank String tenantId)已过时。根据租户id获取该租户租用的系统List<String>listSystemIdByTenantId(@NotBlank String tenantId)已过时。根据租户id,获取租用的系统ID列表List<net.risesoft.model.platform.Tenant>listTenantBySystemId(@NotBlank String systemId)已过时。根据系统查询该系统被哪儿些租户租用了List<net.risesoft.model.platform.Tenant>listTenantBySystemName(@NotBlank String systemName)已过时。根据系统名该系统被哪些租户租用了
-
-
-
方法详细资料
-
listSystemByTenantId
@GetMapping("/listSystemByTenantId") List<net.risesoft.model.platform.System> listSystemByTenantId(@RequestParam("tenantId") @NotBlank @NotBlank String tenantId)已过时。根据租户id获取该租户租用的系统- 参数:
tenantId- 租户id- 返回:
- List<AdminSystem> 系统对象集合
- 从以下版本开始:
- 9.6.0
-
listSystemIdByTenantId
@GetMapping("/listSystemIdByTenantId") List<String> listSystemIdByTenantId(@RequestParam("tenantId") @NotBlank @NotBlank String tenantId)已过时。根据租户id,获取租用的系统ID列表- 参数:
tenantId- 租户ID- 返回:
- List<String> 系统id列表
- 从以下版本开始:
- 9.6.0
-
listTenantBySystemId
@GetMapping("/listTenantBySystemId") List<net.risesoft.model.platform.Tenant> listTenantBySystemId(@RequestParam("systemId") @NotBlank @NotBlank String systemId)已过时。根据系统查询该系统被哪儿些租户租用了- 参数:
systemId- 系统id- 返回:
- List<Tenant> 租户对象集合
- 从以下版本开始:
- 9.6.0
-
-