package com.zt.life.modules.mainPart.task.excel; 
 | 
  
 | 
import com.alibaba.excel.annotation.ExcelProperty; 
 | 
import com.alibaba.excel.annotation.write.style.ColumnWidth; 
 | 
import lombok.Data; 
 | 
  
 | 
@Data 
 | 
public class TechnologyListExcel { 
 | 
  
 | 
    @ExcelProperty({"编号"}) 
 | 
    @ColumnWidth(20) 
 | 
    private String code; 
 | 
  
 | 
    @ExcelProperty({"文件名称"}) 
 | 
    @ColumnWidth(40) 
 | 
    private String fileName; 
 | 
  
 | 
    @ExcelProperty({"类型"}) 
 | 
    @ColumnWidth(20) 
 | 
    private String technologyType; 
 | 
  
 | 
    @ExcelProperty({"是否评审"}) 
 | 
    @ColumnWidth(20) 
 | 
    private String isReview; 
 | 
  
 | 
    @ExcelProperty({"责任单位"}) 
 | 
    @ColumnWidth(30) 
 | 
    private String maintainUnit; 
 | 
  
 | 
    public TechnologyListExcel() { 
 | 
    } 
 | 
  
 | 
    public TechnologyListExcel(String code, String fileName, String technologyType, String isReview, String maintainUnit) { 
 | 
        this.code = code; 
 | 
        this.fileName = fileName; 
 | 
        this.technologyType = technologyType; 
 | 
        this.isReview = isReview; 
 | 
        this.maintainUnit = maintainUnit; 
 | 
    } 
 | 
} 
 |