heheng
2025-01-13 a27162cb82ef0cabf9b43cbfd1f3eb8c177d1e14
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.gkhy.labRiskManage.api.controller.experiment.dto.req;
 
/**
 * @email 1603559716@qq.com
 * @author: zf
 * @date: 2022/12/20
 * @time: 16:14
 */
public class ExperimentAndStuffInsertReqBO {
    private Long stuffId;
    private Integer stuffUseCount;
    /**
     * 实验材料
     */
    private String stuffName;
    /**
     * 编号
     */
    private String stuffCode;
    /**
     * 材料类型:1-化学试剂;2-基础材料
     */
    private Byte stuffType;
    /**
     * 材料储存:1-智能试剂柜;2-普通储存柜
     */
    private Byte stuffStorage;
    /**
     * 计量单位:1-g;2-kg;3-ml;4-L
     */
    private Byte stuffUnit;
    public Long getStuffId() {
        return stuffId;
    }
 
    public void setStuffId(Long stuffId) {
        this.stuffId = stuffId;
    }
 
    public Integer getStuffUseCount() {
        return stuffUseCount;
    }
 
    public void setStuffUseCount(Integer stuffUseCount) {
        this.stuffUseCount = stuffUseCount;
    }
 
    public String getStuffName() {
        return stuffName;
    }
 
    public void setStuffName(String stuffName) {
        this.stuffName = stuffName;
    }
 
    public String getStuffCode() {
        return stuffCode;
    }
 
    public void setStuffCode(String stuffCode) {
        this.stuffCode = stuffCode;
    }
 
    public Byte getStuffType() {
        return stuffType;
    }
 
    public void setStuffType(Byte stuffType) {
        this.stuffType = stuffType;
    }
 
    public Byte getStuffStorage() {
        return stuffStorage;
    }
 
    public void setStuffStorage(Byte stuffStorage) {
        this.stuffStorage = stuffStorage;
    }
 
    public Byte getStuffUnit() {
        return stuffUnit;
    }
 
    public void setStuffUnit(Byte stuffUnit) {
        this.stuffUnit = stuffUnit;
    }
 
 
}