zhuo
2025-05-07 50164d95bfe34f532e3f2513a53f62c0864fe1a2
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;
}