类 TenantSystemApiImpl
- java.lang.Object
-
- net.risesoft.api.tenant.TenantSystemApiImpl
-
- 所有已实现的接口:
TenantSystemApi
@Primary @Validated @RestController @RequestMapping(value="/services/rest/v1/tenantSystem", produces="application/json") public class TenantSystemApiImpl extends Object implements TenantSystemApi租户系统组件- 从以下版本开始:
- 9.6.0
- 作者:
- dingzhaojun, qinman, mengjuhua
- Date:
- 2022/2/10
-
-
构造器概要
构造器 构造器 说明 TenantSystemApiImpl()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.System>>listSystemByTenantId(@NotBlank String tenantId)根据租户id获取该租户租用的系统net.risesoft.pojo.Y9Result<List<String>>listSystemIdByTenantId(@NotBlank String tenantId)根据租户id,获取租用的系统ID列表net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.Tenant>>listTenantBySystemId(@NotBlank String systemId)根据系统id查询租用了系统的租户net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.Tenant>>listTenantBySystemName(@NotBlank String systemName)根据系统名查询租用了系统的租户
-
-
-
方法详细资料
-
listSystemByTenantId
public net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.System>> listSystemByTenantId(@RequestParam("tenantId") @NotBlank @NotBlank String tenantId)
根据租户id获取该租户租用的系统- 指定者:
listSystemByTenantId在接口中TenantSystemApi- 参数:
tenantId- 租户id- 返回:
Y9Result<List<System>>通用请求返回对象 - data是系统对象集合- 从以下版本开始:
- 9.6.0
-
listSystemIdByTenantId
public net.risesoft.pojo.Y9Result<List<String>> listSystemIdByTenantId(@RequestParam("tenantId") @NotBlank @NotBlank String tenantId)
根据租户id,获取租用的系统ID列表- 指定者:
listSystemIdByTenantId在接口中TenantSystemApi- 参数:
tenantId- 租户ID- 返回:
Y9Result<List<String>>通用请求返回对象 - data是系统id集合- 从以下版本开始:
- 9.6.0
-
listTenantBySystemId
public net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.Tenant>> listTenantBySystemId(@RequestParam("systemId") @NotBlank @NotBlank String systemId)
根据系统id查询租用了系统的租户- 指定者:
listTenantBySystemId在接口中TenantSystemApi- 参数:
systemId- 系统id- 返回:
Y9Result<List<Tenant>>通用请求返回对象 - data是租户对象集合- 从以下版本开始:
- 9.6.0
-
listTenantBySystemName
public net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.Tenant>> listTenantBySystemName(@RequestParam("systemName") @NotBlank @NotBlank String systemName)
根据系统名查询租用了系统的租户- 指定者:
listTenantBySystemName在接口中TenantSystemApi- 参数:
systemName- 系统名- 返回:
Y9Result<List<Tenant>>通用请求返回对象 - data是租户对象集合- 从以下版本开始:
- 9.6.0
-
-