houzhongyi
2024-07-11 e7c1260db32209a078a962aaa0ad5492c35774fb
提交 | 用户 | 时间
e7c126 1 package com.iailab.framework.tenant.core.service;
H 2
3 import java.util.List;
4
5 /**
6  * Tenant 框架 Service 接口,定义获取租户信息
7  *
8  * @author iailab
9  */
10 public interface TenantFrameworkService {
11
12     /**
13      * 获得所有租户
14      *
15      * @return 租户编号数组
16      */
17     List<Long> getTenantIds();
18
19     /**
20      * 校验租户是否合法
21      *
22      * @param id 租户编号
23      */
24     void validTenant(Long id);
25
26 }