zhuo
2025-03-21 0e10b1184b1d34de1cf9f372fee3f1abb2291eb7
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;
}