zss
2024-12-20 69c6770472178e64975806f8344c2e0260427c6e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.yuanchu.mom.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Data
public class FeCalibrationScheduleExport {
    @ExcelProperty("仪器名称")
    private String instrumentName;
 
    @ExcelProperty("规格型号")
    private String model;
 
    @ExcelProperty("管理编号")
    private Integer managementNumber;
 
    @ExcelProperty("技术指标")
    private String technicalIndicators;
 
    @ExcelProperty("检定周期")
    private String verificationCyde;
 
    @ExcelProperty("检定单位")
    private String verificationUnit;
 
    @ExcelProperty("最近检定时间")
    private LocalDateTime recentlyTime;
 
    @ExcelProperty("计划下次检定时间")
    private LocalDateTime nextTime;
 
    @ExcelProperty("备注")
    private String remark;
}