29 lines
1003 B
Java
29 lines
1003 B
Java
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_TYPE_CORP = "03";
|
|
/**客户标识*/
|
|
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";
|
|
/**车辆信息表名称*/
|
|
public static final String TABLE_BASE_CAR_MAIN = "base_car_main";
|
|
/**新增标识*/
|
|
public static final String SIGN_CREATE = "create";
|
|
/**编辑标识*/
|
|
public static final String SIGN_UPDATE = "update";
|
|
/**默认密码*/
|
|
public static final String PASSWORD_DEFAULT = "123456";
|
|
/**租户下部门名称*/
|
|
public static final String DEPT_NAME_CORP_NAME = "政企客户";
|
|
}
|