郑永安
2023-06-19 c8188c0fc9edf6ea3feda5b6f11dcb014af2a89e
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package com.gkhy.labRiskManage.domain.basic.model.dto;
 
import java.time.LocalDateTime;
 
/**
 * 基础实验耗材管理
 */
public class StuffDeleteDTO {
 
    private Long id;
    /**
     * 实验材料
     */
    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;
    /**
     * 修改时间
     */
    private LocalDateTime updateTime;
    /**
     * 新建时间
     */
    private LocalDateTime createTime;
    /**
     * 最后修改人
     */
    private Long updateByUserId;
    /**
     * 新建人
     */
    private Long createByUserId;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    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;
    }
 
    public LocalDateTime getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(LocalDateTime updateTime) {
        this.updateTime = updateTime;
    }
 
    public LocalDateTime getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(LocalDateTime createTime) {
        this.createTime = createTime;
    }
 
    public Long getUpdateByUserId() {
        return updateByUserId;
    }
 
    public void setUpdateByUserId(Long updateByUserId) {
        this.updateByUserId = updateByUserId;
    }
 
    public Long getCreateByUserId() {
        return createByUserId;
    }
 
    public void setCreateByUserId(Long createByUserId) {
        this.createByUserId = createByUserId;
    }
}