郑永安
2023-06-19 9d488beac4ff8bdb47f90e2ddd5fd9d907371797
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
package com.gkhy.labRiskManage.api.controller.basic.dto.respDto;
 
import java.time.LocalDateTime;
 
/**
 * 基础实验耗材管理
 */
public class BasicExperimentStuffQueryRespDTO {
 
    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;
    /**
     * 最后修改人姓名
     */
    private String updateByUserName;
    /**
     * 新建人姓名
     */
    private String createByUserName;
 
    public String getUpdateByUserName() {
        return updateByUserName;
    }
 
    public void setUpdateByUserName(String updateByUserName) {
        this.updateByUserName = updateByUserName;
    }
 
    public String getCreateByUserName() {
        return createByUserName;
    }
 
    public void setCreateByUserName(String createByUserName) {
        this.createByUserName = createByUserName;
    }
    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;
    }
}