package cn.com.lzt.personnelbasearchivesmanage.dto; import lombok.Data; import org.jeecgframework.poi.excel.annotation.Excel; import java.util.Date; @Data public class PersonnelOutDto { // 员工姓名 @Excel(name = "员工姓名") private String userName; @Excel(name = "员工编号") private String userNum; // 组织机构 @Excel(name = "部门") private String orgId; // 身份证号 @Excel(name = "身份证号") private String idcard; // 所属职务 @Excel(name = "职务") private String dutiesId; @Excel(name = "性别") private String gender; @Excel(name = "年龄") private Integer age; @Excel(name = "邮箱") private String email;// 邮箱 @Excel(name = "民族",width = 30) private String nation;// 办公电话 @Excel(name = "出生日期",format = "yyyy-MM-dd") private Date birthday; @Excel(name = "入职日期",format = "yyyy-MM-dd") private Date employmentDate; private String postId;//岗位 @Excel(name = "手机" ,width = 20) private String mobilePhone;// 手机 @Excel(name = "办公电话",width = 20) private String officePhone;// 办公电话 private String education; private String hktype; @Excel(name = "居住地址",width = 100) private String address;// 居住地址 @Excel(name = "户口地址",width = 100) private String hkaddress;// 户口地址 @Excel(name = "设备编号") private String deviceId; // 紧急联系人 private String contacts; // 紧急联系人电话 private String contactsPhone; // 政治面貌 private String outlook; // 员工性质 private String nature; }