1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| package org.dromara.common.tenant.properties;
|
| import lombok.Data;
| import org.springframework.boot.context.properties.ConfigurationProperties;
|
| import java.util.List;
|
| /**
| * 租户 配置属性
| *
| * @author Lion Li
| */
| @Data
| @ConfigurationProperties(prefix = "tenant")
| public class TenantProperties {
|
| /**
| * 是否启用
| */
| private Boolean enable;
|
| /**
| * 排除表
| */
| private List<String> excludes;
|
| }
|
|