package com.whyc.dto;
|
|
/**
|
* 设备筛选条件DTO
|
*/
|
public class DeviceConditionDTO {
|
private String site;
|
private Integer deviceTypeId;
|
private Integer runningStatus;
|
private Integer loadStatus;
|
|
public String getSite() {
|
return site;
|
}
|
|
public void setSite(String site) {
|
this.site = site;
|
}
|
|
public Integer getDeviceTypeId() {
|
return deviceTypeId;
|
}
|
|
public void setDeviceTypeId(Integer deviceTypeId) {
|
this.deviceTypeId = deviceTypeId;
|
}
|
|
public Integer getRunningStatus() {
|
return runningStatus;
|
}
|
|
public void setRunningStatus(Integer runningStatus) {
|
this.runningStatus = runningStatus;
|
}
|
|
public Integer getLoadStatus() {
|
return loadStatus;
|
}
|
|
public void setLoadStatus(Integer loadStatus) {
|
this.loadStatus = loadStatus;
|
}
|
}
|