zss
2024-12-30 97bb7a8832281eafe0ef947ea095258d355e52f5
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
package com.yuanchu.mom.dto;
 
import com.yuanchu.mom.annotation.ValueTableShow;
import com.yuanchu.mom.common.OrderBy;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
public class SampleProductDto2 extends OrderBy implements Serializable {
 
    private Integer id;
    private Integer insProductId;
 
    @ValueTableShow(name = "样品编号")
    private String sampleCode;
 
    @ValueTableShow(value = 1, name = "样品名称")
    private String sample;
 
    @ValueTableShow(value = 2, name = "检验项")
    private String inspectionItem;
 
    @ValueTableShow(value = 3, name = "检验子项")
    private String inspectionItemSubclass;
 
    @ValueTableShow(value = 4, name = "单位")
    private String unit;
 
    @ValueTableShow(value = 5, name = "样品型号")
    private String model;
 
//    @ValueTableShow(value = 5, name = "样品状态")
    private Integer insState;
 
//    @ValueTableShow(value = 17, name = "实验室")
    private String sonLaboratory;
 
    private String inspectionItemType;
 
//    @ValueTableShow(value = 11, name = "检验值类型")
    private String inspectionValueType;
 
    @ValueTableShow(value = 12, name = "试验要求")
    private String tell;
 
//    @ValueTableShow(value = 13, name = "检验结果")
    private String lastValue;
 
    @ValueTableShow(value = 14, name = "结果判定")
    private Integer insResult;
 
    @ValueTableShow(value = 15, name = "检验人")
    private String checkName;
 
    @ValueTableShow(value = 16, name = "检验日期")
    private String checkTime;
 
    private String equipValue;
 
}