blob: d8c5c5f07a1afceb45e2daa072e4251b8db52b62 (
plain)
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
|
package com.nis.entity;
import java.io.Serializable;
public class Promserver implements Serializable{
private static final long serialVersionUID = 1L;
private Integer id;
private Integer idcId;
private String host;
private String relabel;
private Integer type;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getIdcId() {
return idcId;
}
public void setIdcId(Integer idcId) {
this.idcId = idcId;
}
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
public String getRelabel() {
return relabel;
}
public void setRelabel(String relabel) {
this.relabel = relabel;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
}
|