package cn.iocoder.yudao.common; /** * 通用常量类 * @author PQZ * @date 16:20 2024/8/1 **/ public class BaseConstants { /**政企客户经办人*/ public static final String CUS_TYPE_CORP_ATTN = "04"; /**客户标识*/ public static final String CUS_SIGN_CUSTOMER = "customer"; /**车辆标识*/ public static final String CUS_SIGN_CAR = "car"; /**客户信息表名称*/ public static final String TABLE_BASE_CUSTOMER_MAIN = "base_customer_main"; }