value
2024-04-25 c623c05868d94854e31652181570537a6493a7eb
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
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;
 
    @ValueTableShow(name = "样品编号")
    private String sampleCode;
 
    @ValueTableShow(value = 2, name = "样品名称")
    private String sample;
 
    @ValueTableShow(value = 4, name = "样品型号")
    private String model;
 
//    @ValueTableShow(value = 5, name = "样品状态")
    private Integer insState;
 
    @ValueTableShow(value = 15, name = "单位")
    private String unit;
 
    @ValueTableShow(value = 7, name = "检验项")
    private String inspectionItem;
 
    @ValueTableShow(value = 8, name = "检验子项")
    private String inspectionItemSubclass;
 
    @ValueTableShow(value = 17, name = "实验室")
    private String sonLaboratory;
 
    private String inspectionItemType;
 
//    @ValueTableShow(value = 11, name = "检验值类型")
    private String inspectionValueType;
 
    @ValueTableShow(value = 12, name = "要求值")
    private String ask;
 
    @ValueTableShow(value = 13, name = "最终值")
    private String lastValue;
 
    @ValueTableShow(value = 14, name = "是否合格")
    private Integer insResult;
 
    @ValueTableShow(value = 16, name = "设备")
    private String equipValue;
 
}