gdg
2020-12-28 c9ed223546b87fd373d8acf8948d9fdbf843e291
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
package com.nanometer.smartlab.entity.dto;
 
 
import java.util.*;
public class ReagentReceivingDto {
 
    //试剂编码
    private List<String> reagentCode;
    //申领人id
    private String applyUserId;
    //实验室id
    private String labId;
    //实验室下货柜id
    private String labContainerId;
 
 
    public List<String> getReagentCode() {
        return reagentCode;
    }
 
    public void setReagentCode(List<String> reagentCode) {
        this.reagentCode = reagentCode;
    }
 
    public String getApplyUserId() {
        return applyUserId;
    }
 
    public void setApplyUserId(String applyUserId) {
        this.applyUserId = applyUserId;
    }
 
    public String getLabId() {
        return labId;
    }
 
    public void setLabId(String labId) {
        this.labId = labId;
    }
 
    public String getLabContainerId() {
        return labContainerId;
    }
 
    public void setLabContainerId(String labContainerId) {
        this.labContainerId = labContainerId;
    }
}