whycxzp
2021-04-07 9e6f3daa0d48ae2178537fe20253c1902dc8f9df
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
package com.whyc.dto;
 
/**
 * 设备筛选条件DTO
 */
public class DeviceConditionDTO {
    private String site;
    private Integer deviceTypeId;
    private Integer runningStatus;
    private Integer loadStatus;
    private String deviceName;
 
    public String getDeviceName() {
        return deviceName;
    }
 
    public void setDeviceName(String deviceName) {
        this.deviceName = deviceName;
    }
 
    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;
    }
}