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; }