package com.panzhihua.common.constants;
|
|
/**
|
* 字典表key
|
*
|
* @author xyh
|
* @date 2021/6/11 15:53
|
*/
|
public class BcDictionaryConstants {
|
|
/**
|
* 家庭关系
|
*/
|
public static final String FAMILY = "family";
|
|
/**
|
* 民族
|
*/
|
public static final String NATION = "nation";
|
|
/**
|
* 性别
|
*/
|
public static final String SEX = "sex";
|
|
/**
|
* 婚姻状况
|
*/
|
public static final String MARRY = "marry";
|
/**
|
* 国家
|
*/
|
public static final String COUNTRY = "country";
|
|
/**
|
* 学历
|
*/
|
public static final String EDUCATION = "education";
|
|
/**
|
* 生育史
|
*/
|
public static final String CHILDBEARING_HISTORY = "childbearing history";
|
|
/**
|
* 职业
|
*/
|
public static final String PROFESSION = "profession";
|
|
/**
|
* 政治面貌
|
*/
|
public static final String POLITICAL_OUTLOOK = "political_outlook";
|
|
}
|