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-07 12:00:49 +08:00
|
|
|
/**政企客户*/
|
|
|
|
public static final String CUS_TYPE_CORP = "03";
|
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-07 16:23:29 +08:00
|
|
|
/**车辆信息表名称*/
|
|
|
|
public static final String TABLE_BASE_CAR_MAIN = "base_car_main";
|
2024-08-07 12:00:49 +08:00
|
|
|
/**新增标识*/
|
|
|
|
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 = "政企客户";
|
2024-08-13 17:00:58 +08:00
|
|
|
/**私家车*/
|
|
|
|
public static final String CAR_CATEGORY_PRIVATE = "01";
|
|
|
|
/**货车*/
|
|
|
|
public static final String CAR_CATEGORY_TRUCK = "02";
|
2024-08-09 08:16:30 +08:00
|
|
|
/**计算下次检测时间*/
|
|
|
|
public static final String COMPUTE_TYPE_JC = "jc";
|
2024-08-08 20:20:27 +08:00
|
|
|
/**企业管理-员工管理表名称*/
|
|
|
|
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;
|
2024-08-13 10:40:22 +08:00
|
|
|
/**企业功能标识*/
|
|
|
|
public static final String FUNC_COMPANY = "company";
|
2024-08-13 18:38:29 +08:00
|
|
|
/**批量操作数据量*/
|
|
|
|
public static final Integer BATCH_SIZE = 100;
|
2024-08-14 11:18:09 +08:00
|
|
|
/**资质临期通知模板*/
|
|
|
|
public static final String QUALS_INTERIM_PERIOD = "quals_interim_period";
|
|
|
|
/**资质过期通知模板*/
|
|
|
|
public static final String QUALS_EXPIRED = "quals_expired";
|
2024-08-16 09:43:26 +08:00
|
|
|
/** 资产临期通知模板 */
|
|
|
|
public static final String PROPERTY_INTERIM_PERIOD = "property_interim_period";
|
|
|
|
/** 资产过期通知模板 */
|
|
|
|
public static final String PROPERTY_EXPIRED = "property_expired";
|
2024-08-02 18:18:40 +08:00
|
|
|
}
|