xyc
2024-07-16 2c1091471c027641d0e73ec7d50a4a0464e86d8f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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;
    }
}