zhuo
2025-03-06 b51f37241e4b369718d5e27a3686ca7edadaf69b
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;
}