AdaKing88
2023-08-23 ae35159387a55199e8ab150ebb97d89d68a235bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.jeecg.common.constant;
 
/**
 * @Description: TenantConstant
 * @author: scott
 * @date: 2022年08月29日 15:29
 */
public interface TenantConstant {
 
    /**
     * 应用ID——表字段
     */
    String DB_FIELD_LOW_APP_ID = "low_app_id";
    /**
     * 应用ID——实体字段
     */
    String FIELD_LOW_APP_ID = "lowAppId";
    /**
     * 租户ID
     */
    String TENANT_ID = "tenantId";
}