|  | @@ -1,11 +1,13 @@
 | 
	
		
			
				|  |  |  package com.xunmei.system.util;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +import com.alibaba.excel.annotation.ExcelIgnore;
 | 
	
		
			
				|  |  |  import com.alibaba.excel.annotation.ExcelProperty;
 | 
	
		
			
				|  |  |  import com.alibaba.excel.annotation.write.style.ColumnWidth;
 | 
	
		
			
				|  |  |  import com.alibaba.excel.annotation.write.style.ContentRowHeight;
 | 
	
		
			
				|  |  |  import com.alibaba.excel.annotation.write.style.HeadRowHeight;
 | 
	
		
			
				|  |  |  import com.baomidou.mybatisplus.annotation.TableField;
 | 
	
		
			
				|  |  |  import lombok.Data;
 | 
	
		
			
				|  |  | +import lombok.NoArgsConstructor;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  import java.util.Date;
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -19,6 +21,9 @@ import java.util.Date;
 | 
	
		
			
				|  |  |  @HeadRowHeight(16) //表头行高
 | 
	
		
			
				|  |  |  @ContentRowHeight(16) //数据行高
 | 
	
		
			
				|  |  |  public class SecurityUserExport {
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @ExcelIgnore
 | 
	
		
			
				|  |  | +    private Long orgId;
 | 
	
		
			
				|  |  |      @ExcelProperty(value = "序号", index = 0)
 | 
	
		
			
				|  |  |      @TableField(exist = false)
 | 
	
		
			
				|  |  |      private String xh;
 | 
	
	
		
			
				|  | @@ -40,24 +45,24 @@ public class SecurityUserExport {
 | 
	
		
			
				|  |  |      private String nowDuties;
 | 
	
		
			
				|  |  |      @ExcelProperty(value = "是否专职(专职是指专职做安全保卫部门相应岗位工作,不再兼任其他岗位或部门工作)", index = 9)
 | 
	
		
			
				|  |  |      private String isFullTime;
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "用工形式", index = 9)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "用工形式", index = 10)
 | 
	
		
			
				|  |  |      private String workType;
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "现任职时间", index = 10)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "现任职时间", index = 11)
 | 
	
		
			
				|  |  |      private Date entryTime;
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "工作年限", index = 11)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "工作年限", index = 12)
 | 
	
		
			
				|  |  |      private String workDuration;
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "最高学历", index = 12)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "最高学历", index = 13)
 | 
	
		
			
				|  |  |      private String highestEducation;
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "取得方式", index = 13)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "取得方式", index = 14)
 | 
	
		
			
				|  |  |      private String educationType;
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "初级以上(含初级)相关专业技术职业资格", index = 14)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "初级以上(含初级)相关专业技术职业资格", index = 15)
 | 
	
		
			
				|  |  |      private String professionalQualifications;
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "持证上岗考试通过情况", index = 15)
 | 
	
		
			
				|  |  | -    private String certificateWork;
 | 
	
		
			
				|  |  |      @ExcelProperty(value = "持证上岗考试通过情况", index = 16)
 | 
	
		
			
				|  |  | +    private String certificateWork;
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "持证上岗考试通过情况", index = 17)
 | 
	
		
			
				|  |  |      private String certificateFailReason;
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "分管领导姓名", index = 17)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "分管领导姓名", index = 18)
 | 
	
		
			
				|  |  |      private String responsibilitiesLeaderName;
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "分管领导职务", index = 18)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "分管领导职务", index = 19)
 | 
	
		
			
				|  |  |      private String responsibilitiesLeaderDuties;
 | 
	
		
			
				|  |  |  }
 |