22 lines
639 B
Java
22 lines
639 B
Java
|
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";
|
||
|
|
||
|
}
|