bgp日志type字段换成字典取值,as字段换成asNum
This commit is contained in:
@@ -4,7 +4,7 @@ public class NtcBGPLog extends BaseLogEntity<NtcBGPLog> {
|
||||
|
||||
private static final long serialVersionUID = 4597407682545926823L;
|
||||
private Integer type;
|
||||
private String as;
|
||||
private String asNum;
|
||||
private String route;
|
||||
public Integer getType() {
|
||||
return type;
|
||||
@@ -12,11 +12,11 @@ public class NtcBGPLog extends BaseLogEntity<NtcBGPLog> {
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
public String getAs() {
|
||||
return as;
|
||||
public String getAsNum() {
|
||||
return asNum;
|
||||
}
|
||||
public void setAs(String as) {
|
||||
this.as = as;
|
||||
public void setAsNum(String asNum) {
|
||||
this.asNum = asNum;
|
||||
}
|
||||
public String getRoute() {
|
||||
return route;
|
||||
|
||||
Reference in New Issue
Block a user