package com.gkhy.labRiskManage.application.experiment.dto.dto;
|
|
import java.time.LocalDateTime;
|
|
/**
|
* 实验与设备
|
*/
|
|
public class ExperimentAndDeviceAppQueryDTO {
|
|
private Long deviceId;
|
|
/**
|
* 设备编号
|
*/
|
private String deviceCode;
|
/**
|
* 设备名称
|
*/
|
private String deviceName;
|
/**
|
* 设备功率
|
*/
|
private String devicePower;
|
/**
|
* 是否特种设备:1-是;2-不是
|
*/
|
private Byte specialDevice;
|
/**
|
* 计量单位:1-台;2-个; 3-件
|
*/
|
private Byte deviceUnit;
|
/**
|
* 安全防护
|
*/
|
private String safeProtect;
|
/**
|
* 使用数量
|
*/
|
private Integer deviceUseCount;
|
|
public Long getDeviceId() {
|
return deviceId;
|
}
|
|
public void setDeviceId(Long deviceId) {
|
this.deviceId = deviceId;
|
}
|
|
public Integer getDeviceUseCount() {
|
return deviceUseCount;
|
}
|
|
public void setDeviceUseCount(Integer deviceUseCount) {
|
this.deviceUseCount = deviceUseCount;
|
}
|
|
public String getDeviceCode() {
|
return deviceCode;
|
}
|
|
public void setDeviceCode(String deviceCode) {
|
this.deviceCode = deviceCode;
|
}
|
|
public String getDeviceName() {
|
return deviceName;
|
}
|
|
public void setDeviceName(String deviceName) {
|
this.deviceName = deviceName;
|
}
|
|
public String getDevicePower() {
|
return devicePower;
|
}
|
|
public void setDevicePower(String devicePower) {
|
this.devicePower = devicePower;
|
}
|
|
public Byte getSpecialDevice() {
|
return specialDevice;
|
}
|
|
public void setSpecialDevice(Byte specialDevice) {
|
this.specialDevice = specialDevice;
|
}
|
|
public Byte getDeviceUnit() {
|
return deviceUnit;
|
}
|
|
public void setDeviceUnit(Byte deviceUnit) {
|
this.deviceUnit = deviceUnit;
|
}
|
|
public String getSafeProtect() {
|
return safeProtect;
|
}
|
|
public void setSafeProtect(String safeProtect) {
|
this.safeProtect = safeProtect;
|
}
|
}
|