gaoluyang
2025-02-15 9b2c4a6e9683a704a872e282eb1deab39f665195
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;
}