29 lines
562 B
Java
29 lines
562 B
Java
|
|
package com.nis.domain.log;
|
||
|
|
|
||
|
|
public class NtcBGPLog extends BaseLogEntity<NtcBGPLog> {
|
||
|
|
|
||
|
|
private static final long serialVersionUID = 4597407682545926823L;
|
||
|
|
private Integer type;
|
||
|
|
private String as;
|
||
|
|
private String route;
|
||
|
|
public Integer getType() {
|
||
|
|
return type;
|
||
|
|
}
|
||
|
|
public void setType(Integer type) {
|
||
|
|
this.type = type;
|
||
|
|
}
|
||
|
|
public String getAs() {
|
||
|
|
return as;
|
||
|
|
}
|
||
|
|
public void setAs(String as) {
|
||
|
|
this.as = as;
|
||
|
|
}
|
||
|
|
public String getRoute() {
|
||
|
|
return route;
|
||
|
|
}
|
||
|
|
public void setRoute(String route) {
|
||
|
|
this.route = route;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|