mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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";
 
}