DeployResultMsg.java
1.07 KB
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
53
package com.objecteye.entity;
import java.io.Serializable;
public class DeployResultMsg implements Serializable {
private int deployId;
private String deployName;
private int status;
private long alarmNum;
public DeployResultMsg() {
}
public DeployResultMsg(int deployId, String deployName, int status, long alarmNum) {
this.deployId = deployId;
this.deployName = deployName;
this.status = status;
this.alarmNum = alarmNum;
}
public int getDeployId() {
return deployId;
}
public void setDeployId(int deployId) {
this.deployId = deployId;
}
public String getDeployName() {
return deployName;
}
public void setDeployName(String deployName) {
this.deployName = deployName;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
public long getAlarmNum() {
return alarmNum;
}
public void setAlarmNum(long alarmNum) {
this.alarmNum = alarmNum;
}
}