添加 RADIUS协议日志
This commit is contained in:
39
src/main/java/com/nis/domain/log/NtcCollectRadiusLog.java
Normal file
39
src/main/java/com/nis/domain/log/NtcCollectRadiusLog.java
Normal 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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user