|  | @@ -27,21 +27,26 @@ public class CoreSafetyTaskExport {
 | 
	
		
			
				|  |  |      @ColumnWidth(30)
 | 
	
		
			
				|  |  |      private String title;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "任务类型")
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "任务类型", index = 2)
 | 
	
		
			
				|  |  | +    @ColumnWidth(30)
 | 
	
		
			
				|  |  | +    private String taskType;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "检查主体")
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "检查主体", index = 2)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "检查主体", index = 3)
 | 
	
		
			
				|  |  |      @ColumnWidth(25)
 | 
	
		
			
				|  |  |      private String checkOrgName;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "检查人员角色")
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "检查人员", index = 3)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "检查人员", index = 4)
 | 
	
		
			
				|  |  |      private String submitName;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "登记人")
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "登记人", index = 4)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "登记人", index = 5)
 | 
	
		
			
				|  |  |      private String submitUserName;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "0待检查,1检查完成")
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "任务进度", index = 5,converter = SafeStatusConverter.class)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "任务进度", index = 6,converter = SafeStatusConverter.class)
 | 
	
		
			
				|  |  |      private String status;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @ExcelIgnore
 | 
	
	
		
			
				|  | @@ -51,7 +56,7 @@ public class CoreSafetyTaskExport {
 | 
	
		
			
				|  |  |       * 受检机构所属地区
 | 
	
		
			
				|  |  |       */
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "受检机构所属地区")
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "地区", index = 6)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "地区", index = 7)
 | 
	
		
			
				|  |  |      @ColumnWidth(15)
 | 
	
		
			
				|  |  |      private String affiliatedArea;
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -59,24 +64,24 @@ public class CoreSafetyTaskExport {
 | 
	
		
			
				|  |  |       * 受检机构所属行社
 | 
	
		
			
				|  |  |       */
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "受检机构所属行社")
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "行社名称", index = 7)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "行社名称", index = 8)
 | 
	
		
			
				|  |  |      @ColumnWidth(20)
 | 
	
		
			
				|  |  |      private String affiliatedBank;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "受检机构")
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "受检机构", index = 8)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "受检机构", index = 9)
 | 
	
		
			
				|  |  |      @ColumnWidth(25)
 | 
	
		
			
				|  |  |      private String orgName;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "开始日期")
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "开始日期", index = 9)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "开始日期", index = 10)
 | 
	
		
			
				|  |  |      @ColumnWidth(20)
 | 
	
		
			
				|  |  |      private Date planStartTime;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "截止日期")
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "截止日期", index = 10)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "截止日期", index = 11)
 | 
	
		
			
				|  |  |      @ColumnWidth(20)
 | 
	
		
			
				|  |  |      private Date planEndTime;
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -98,6 +103,6 @@ public class CoreSafetyTaskExport {
 | 
	
		
			
				|  |  |      private Long planId;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "异常数目")
 | 
	
		
			
				|  |  | -    @ExcelProperty(value = "隐患问题数", index = 11)
 | 
	
		
			
				|  |  | +    @ExcelProperty(value = "隐患问题数", index = 12)
 | 
	
		
			
				|  |  |      private String exceptionCount;
 | 
	
		
			
				|  |  |  }
 |