| | |
| | | @ExcelProperty(value = "姓名",index = 0) |
| | | private String name; |
| | | /** |
| | | * 社工证编号 列: social_worker_code |
| | | * 身份证 列: social_worker_code |
| | | */ |
| | | @ExcelProperty(value = "社工证号码",index = 1) |
| | | private String socialWorkerCode; |
| | | @ExcelProperty(value = "身份证号码",index = 1) |
| | | private String idCard; |
| | | |
| | | /** |
| | | * 性别0女1男 列: gen |
| | |
| | | @ExcelProperty(value = "性别0女1男",index = 2) |
| | | private String gen; |
| | | /** |
| | | * 出生日期 列: birthday |
| | | * 入职时间 |
| | | */ |
| | | @ExcelProperty(value = "出生日期",index = 3) |
| | | private Date birthday; |
| | | @ExcelProperty(value = "入职时间",index = 3) |
| | | private Date joinTime; |
| | | /** |
| | | * 联系电话 列: telephone |
| | | */ |
| | |
| | | private String telephone; |
| | | |
| | | /** |
| | | * 所属街道 列: street_id |
| | | * 学历 列: street_id |
| | | */ |
| | | @ExcelProperty(value = "所属街道",index = 5) |
| | | private String streetId; |
| | | @ExcelProperty(value = "学历",index = 5) |
| | | private String education; |
| | | /** |
| | | * 所属社区 列: community_id |
| | | */ |
| | |
| | | private String communityId; |
| | | |
| | | /** |
| | | * 所属组织ID 列: social_org_id |
| | | * 政治面貌 |
| | | */ |
| | | @ExcelProperty(value = "所属机构",index = 7) |
| | | private String socialOrgId; |
| | | @ExcelProperty(value = "政治面貌",index = 7) |
| | | private String politicalOutlook; |
| | | |
| | | |
| | | /** |
| | | * 社工资质 列: social_qua |
| | | * 民族 列: social_qua |
| | | */ |
| | | @ExcelProperty(value = "社工资质",index = 8) |
| | | private String socialQua; |
| | | @ExcelProperty(value = "民族",index = 8) |
| | | private String nation; |
| | | /** |
| | | * 技能领域 列: skill_field |
| | | * 社工证 |
| | | */ |
| | | @ExcelProperty(value = "技能领域",index = 9) |
| | | private String skillField; |
| | | @ExcelProperty(value = "社工证",index = 9) |
| | | private String credential; |
| | | /** |
| | | * 业务范围 列: business_scope |
| | | * 住址 |
| | | */ |
| | | @ExcelProperty(value = "业务范围",index = 10) |
| | | private String businessScope; |
| | | |
| | | @ExcelProperty(value = "住址",index = 10) |
| | | private String address; |
| | | /** |
| | | * 年龄 |
| | | */ |
| | | @ExcelProperty(value = "年龄",index = 11) |
| | | private Integer age; |
| | | |
| | | |
| | | |