2024-08-01 17:23:57 +08:00
|
|
|
package cn.iocoder.yudao.common;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 字典编码常量类
|
|
|
|
* @author PQZ
|
|
|
|
* @date 16:20 2024/8/1
|
|
|
|
**/
|
|
|
|
public class DictBaseConstants {
|
|
|
|
/**客户类型字典编码*/
|
|
|
|
public static final String DICT_CUS_TYPE = "cus_type";
|
|
|
|
/**客户初始来源字典编码*/
|
|
|
|
public static final String DICT_CUS_DATA_FROM = "cus_data_from";
|
|
|
|
/**业务分类字典编码*/
|
|
|
|
public static final String DICT_CUS_BUSI_TYPE = "cus_busi_type";
|
|
|
|
/**客户注册方式字典编码*/
|
|
|
|
public static final String DICT_SIGN_TYPE = "cus_sign_type";
|
|
|
|
/**性别*/
|
|
|
|
public static final String DICT_SYS_USER_SEX = "system_user_sex";
|
2024-08-13 10:40:22 +08:00
|
|
|
/**学历*/
|
|
|
|
public static final String COMPANY_STAFF_EDU = "company_staff_edu";
|
2024-08-14 11:18:09 +08:00
|
|
|
/**企业资质临期判定时间*/
|
|
|
|
public static final String COMPANY_QUALS_EXPIRED = "company_quals_expired";
|
2024-08-15 20:17:50 +08:00
|
|
|
/** 价值类型 */
|
|
|
|
public static final String COMPANY_COST_TYPE = "company_cost_type";
|
|
|
|
/** 资产状态 */
|
|
|
|
public static final String COMPANY_PROP_STATUS = "company_prop_status";
|
|
|
|
/** 时间周期字典 */
|
|
|
|
public static final String CYCLE_DICT = "cycle_dict";
|
|
|
|
|
2024-08-01 17:23:57 +08:00
|
|
|
}
|