whyczh
2021-04-07 9f83bdaebfd57892bc48857c286780a01efeb581
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
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;
    }
}