37 lines
1.3 KiB
Java
37 lines
1.3 KiB
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 = "政企客户";
|
|
/**企业管理-员工管理表名称*/
|
|
public static final String COMPANY_STAFF = "company_staff";
|
|
/**员工标识*/
|
|
public static final String COMPANY_SING_STAFF = "staff";
|
|
/** 标签默认外观 */
|
|
public static final String LABEL_TYPE = "default";
|
|
/** 唯一推广码生成长度 */
|
|
public static final Integer UNIQUE_CODE_LEN = 6;
|
|
}
|