1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.ruoyi.common.constant;
|
| /**
| * 缓存的key 常量
| *
| * @author ruoyi
| */
| public class DictConstants
| {
| /**
| * 租户属性
| */
| public static final String DICT_TYPE_TENANT_ATTRIBUTE = "t_tenant_attribute";
| /**
| * 租户类型
| */
| public static final String DICT_TYPE_TENANT_TYPE = "t_tenant_type";
| }
|
|