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
package com.panzhihua.common.model.dtos.civil;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author zzj
 */
@Data
public class ComActSocialWorkerExcelVO {
 
    /**
     * 姓名   列: name
     */
    @ExcelProperty(value = "姓名",index = 0)
    private String name;
    /**
     * 身份证   列: social_worker_code
     */
    @ExcelProperty(value = "身份证号码",index = 1)
    private String idCard;
 
    /**
     * 性别0女1男   列: gen
     */
    @ExcelProperty(value = "性别0女1男",index = 2)
    private String gen;
    /**
     * 入职时间
     */
    @ExcelProperty(value = "入职时间",index = 3)
    private Date joinTime;
    /**
     * 联系电话   列: telephone
     */
    @ExcelProperty(value = "联系电话",index = 4)
    private String telephone;
 
    /**
     * 学历   列: street_id
     */
    @ExcelProperty(value = "学历",index = 5)
    private String education;
    /**
     * 所属社区   列: community_id
     */
    @ExcelProperty(value = "所属社区",index = 6)
    private String communityId;
 
    /**
     * 政治面貌
     */
    @ExcelProperty(value = "政治面貌",index = 7)
    private String politicalOutlook;
 
 
    /**
     * 民族   列: social_qua
     */
    @ExcelProperty(value = "民族",index = 8)
    private String nation;
    /**
     * 社工证
     */
    @ExcelProperty(value = "社工证",index = 9)
    private String credential;
    /**
     * 住址
     */
    @ExcelProperty(value = "住址",index = 10)
    private String address;
    /**
     * 年龄
     */
    @ExcelProperty(value = "年龄",index = 11)
    private Integer age;
 
 
 
 
 
}