package com.gkhy.labRiskManage.application.basic.dto.dto; import java.time.LocalDateTime; /** * 基础实验耗材管理 */ public class BasicExperimentStuffAppQueryDTO { 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; } }