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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
package com.panzhihua.common.model.dtos.user;
 
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
 
import lombok.Data;
 
/**
 * @program: springcloud_k8s_panzhihuazhihuishequ
 * @description: 居民信息excel导入
 * @author: huang.hongfa weixin hhf9596 qq 959656820
 * @create: 2021-02-04 16:06
 **/
@Data
public class EexcelUserDTO {
 
    /**
     * 序号
     */
    @ExcelProperty("序号")
    private String order;
 
    @ExcelProperty("小区")
    private String areaName;
 
    /**
     * 门牌号
     */
    @ExcelProperty("门牌号")
    private String doorNumber;
    /**
     * 是否租住
     */
    @ExcelProperty("是否租住")
    private String isRent = "否";
    /**
     * 姓名
     */
    @ExcelProperty("姓名")
    private String name;
    /**
     * 民族
     */
    @ExcelProperty("民族")
    private String nation;
    /**
     * 政治面貌
     */
    @ExcelProperty("政治面貌")
    private String politicalOutlook;
    /**
     * 婚姻状态
     */
    @ExcelProperty("婚姻状态")
    private String maritalStatus = "否";
    /**
     * 联系方式
     */
    @ExcelProperty("联系方式")
    private String phone;
    /**
     * 文化程度
     */
    @ExcelProperty("文化程度")
    private String education;
    /**
     * 身份证
     */
    @ExcelProperty("身份证")
    private String idCard;
    /**
     * 工作单位(学校)
     */
    @ExcelProperty("工作单位(学校)")
    private String company;
    /**
     * 户口所在地
     */
    @ExcelProperty("户口所在地")
    private String residence;
    /**
     * 目前是否在攀枝花
     */
    @ExcelProperty("目前是否在攀枝花")
    private String isPanZhiHua = "否";
    /**
     * 近一个月离(返)攀情况
     */
    @ExcelProperty("近一个月离(返)攀情况")
    private String situation = "否";
    /**
     * 是否有与疑似或确诊病例密切接触史
     */
    @ExcelProperty("是否有与疑似或确诊病例密切接触史")
    private String isContact = "否";
    /**
     * 特殊情况(重大过往病史或者孕妇)
     */
    @ExcelProperty("特殊情况(重大过往病史或者孕妇")
    private String major = "否";
    /**
     * 退役军人
     */
    @ExcelProperty("退役军人")
    private String soldier = "否";
    /**
     * 残疾人
     */
    @ExcelProperty("残疾人")
    private String disability = "否";
    /**
     * 低保户
     */
    @ExcelProperty("低保户")
    private String lowIncomeHouseholds = "否";
    /**
     * 低收入人员
     */
    @ExcelProperty("低收入人员")
    private String lowIncomePeople = "否";
    /**
     * 高龄老人
     */
    @ExcelProperty("高龄老人")
    private String oldPeople = "否";
    /**
     * 特服家庭
     */
    @ExcelProperty("特服家庭")
    private String specialServiceFamily = "否";
    /**
     * 重点人员
     */
    @ExcelProperty("重点人员")
    private String keyPersonnel = "否";
 
    @ExcelProperty("标签")
    private String tags;
 
    /**
     * 房屋编码
     */
    @ExcelIgnore
    private String houseCode;
 
}