zouyu
2026-05-07 2eaeb19b16af087d17c186c6220bf64f2fc07f4f
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package com.ruoyi.inspect.vo;
 
import com.alibaba.excel.annotation.ExcelProperty;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class ProductVo  {
 
    /**
     * 订单号
     */
    @ExcelProperty(value = "订单号",index = 0)
    @ApiModelProperty("订单号")
    private String orderNo;
 
    /**
     * 批次号
     */
    @ExcelProperty(value = "批次号",index = 1)
    @ApiModelProperty("批次号")
    private String updateBatchNo;
 
    /**
     * 零件号
     */
    @ExcelProperty(value = "零件号",index = 2)
    @ApiModelProperty("零件号")
    private String partNo;
 
    /**
     * 零件描述
     */
    @ExcelProperty(value = "零件描述",index = 3)
    @ApiModelProperty("零件描述")
    private String partDesc;
 
    /**
     * 委托编号
     */
    @ExcelProperty(value = "委托编号",index = 4)
    @ApiModelProperty("委托编号")
    private String entrustCode ;
 
    /**
     * 样品编号
     */
    @ExcelProperty(value = "样品编号",index = 5)
    @ApiModelProperty("样品编号")
    private String sampleCode;
 
    /**
     * 检验项
     */
    @ExcelProperty(value = "检验项",index = 6)
    @ApiModelProperty("检验项")
    private String inspectionItem;
 
    /**
     * 检验子项
     */
    @ExcelProperty(value = "检验子项",index = 7)
    @ApiModelProperty("检验子项")
    private String inspectionItemSubclass;
 
    /**
     * 标准要求
     */
    @ExcelProperty(value = "标准要求",index = 8)
    @ApiModelProperty("标准要求")
    private String tell;
 
    /**
     * 检验值
     */
    @ExcelProperty(value = "检验值",index = 9)
    @ApiModelProperty("检验值")
    private String lastValue;
 
    /**
     * 检验结果
     */
    @ExcelProperty(value = "检验结果",index = 10)
    @ApiModelProperty("检验结果")
    private String insResult;
 
    /**
     * 检验人
     */
    @ExcelProperty(value = "检验人",index = 11)
    @ApiModelProperty("检验人")
    private String name;
 
    /**
     * 检验时间
     */
    @ExcelProperty(value = "检验时间",index = 12)
    @ApiModelProperty("检验时间")
    private String createTime;
 
 
}