2024-08-02 18:18:40 +08:00
|
|
|
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";
|
2024-08-03 21:51:22 +08:00
|
|
|
/**客户标识*/
|
|
|
|
public static final String CUS_SIGN_CUSTOMER = "customer";
|
|
|
|
/**车辆标识*/
|
|
|
|
public static final String CUS_SIGN_CAR = "car";
|
2024-08-06 17:12:51 +08:00
|
|
|
/**客户信息表名称*/
|
|
|
|
public static final String TABLE_BASE_CUSTOMER_MAIN = "base_customer_main";
|
2024-08-02 18:18:40 +08:00
|
|
|
}
|