kongzy
2024-07-01 47a751cb301d05276ae5d75145d57b2d090fe4e1
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
package com.nanometer.smartlab.entity.dto;
 
//领用单
public class ApplyListDto {
 
    //产品编号
    private String productCode;
    //产品名称
    private String productName;
    //管制品
    private String controlProducts;
    //试剂型号
    private String reagentFormat;
    //包装
    private String mainMetering;
    //数量
    private String num;
    //备注
    private String memo;
 
    public ApplyListDto() {
    }
 
    public ApplyListDto(String productCode, String productName, String controlProducts, String reagentFormat, String mainMetering, String num, String memo) {
        this.productCode = productCode;
        this.productName = productName;
        this.controlProducts = controlProducts;
        this.reagentFormat = reagentFormat;
        this.mainMetering = mainMetering;
        this.num = num;
        this.memo = memo;
    }
 
    public String getProductCode() {
        return productCode;
    }
 
    public void setProductCode(String productCode) {
        this.productCode = productCode;
    }
 
    public String getProductName() {
        return productName;
    }
 
    public void setProductName(String productName) {
        this.productName = productName;
    }
 
    public String getControlProducts() {
        return controlProducts;
    }
 
    public void setControlProducts(String controlProducts) {
        this.controlProducts = controlProducts;
    }
 
    public String getReagentFormat() {
        return reagentFormat;
    }
 
    public void setReagentFormat(String reagentFormat) {
        this.reagentFormat = reagentFormat;
    }
 
    public String getMainMetering() {
        return mainMetering;
    }
 
    public void setMainMetering(String mainMetering) {
        this.mainMetering = mainMetering;
    }
 
    public String getNum() {
        return num;
    }
 
    public void setNum(String num) {
        this.num = num;
    }
 
    public String getMemo() {
        return memo;
    }
 
    public void setMemo(String memo) {
        this.memo = memo;
    }
}