yaowanxin
3 天以前 b1c6c32fdcee89f97c05bd21f4fb0b95f4009764
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.require.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
@Data
public class FeLightningProtectionExcel {
    @ExcelProperty("原文件名")
    private String fileName;
 
    @ExcelProperty("检测日期")
    private String detectionDate;
 
    @ExcelProperty("有效期")
    private String termValidity;
 
    @ExcelProperty("检测单位")
    private String detectionUnit;
 
    @ExcelProperty("创建时间")
    private String createTime;
}