zouyu
2025-03-06 32a0e96bf65f7a9759bddd1848f1cd9d7006ce1e
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package com.ruoyi.inspect.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.converters.localdate.LocalDateStringConverter;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.time.LocalDate;
 
/**
 * 光纤带状几何参数
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class FiberRibboGeometricalParameterExcelData implements Serializable {
 
    @ExcelProperty("委托编号")
    private String entrustCode;
 
    @ExcelProperty("样品编号")
    private String sampleCode;
 
    @ExcelProperty("套管色标")
    private String bushColor;
 
    @ExcelProperty("光纤带编号")
    private String code;
 
    @ExcelProperty("检验项目分类")
    private String inspectionItemType;
 
    @ExcelProperty("检验人")
    private String inspector;
 
    @ExcelProperty(value = "检验时间",converter = LocalDateStringConverter.class)
    private LocalDate insTime;
 
    @ExcelProperty("光纤带厚度A端")
    private String thicknessA;
 
    @ExcelProperty("光纤带厚度B端")
    private String thicknessB;
 
    @ExcelProperty("光纤带宽度A端")
    private String widthA;
 
    @ExcelProperty("光纤带宽度B端")
    private String widthB;
 
    @ExcelProperty("两侧光纤水平间距A端")
    private String sideSpacingA;
 
    @ExcelProperty("两侧光纤水平间距B端")
    private String sideSpacingB;
 
    @ExcelProperty("平整度A端")
    private String evennessA;
 
    @ExcelProperty("平整度B端")
    private String evennessB;
 
    @ExcelProperty("相邻光纤水平间距A端")
    private String adjacentSpacingA;
 
    @ExcelProperty("相邻光纤水平间距B端")
    private String adjacentSpacingB;
 
}