qushaowei
2024-04-22 a862e80c1ee46a77fc8a2dacf59b0110b3669550
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";
}