添加 RADIUS协议日志

This commit is contained in:
leijun
2018-12-12 16:47:08 +08:00
parent c614d36059
commit 4a36dc08e7
8 changed files with 474 additions and 3 deletions

View File

@@ -0,0 +1,39 @@
package com.nis.domain.log;
public class NtcCollectRadiusLog extends BaseLogEntity<NtcCollectRadiusLog> {
private static final long serialVersionUID = -4947912502754359817L;
protected Integer code;
protected String nasIp;
protected String framedIp;
protected String account;
public Integer getCode() {
return code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getNasIp() {
return nasIp;
}
public void setNasIp(String nasIp) {
this.nasIp = nasIp;
}
public String getFramedIp() {
return framedIp;
}
public void setFramedIp(String framedIp) {
this.framedIp = framedIp;
}
public String getAccount() {
return account;
}
public void setAccount(String account) {
this.account = account;
}
}