40 lines
798 B
Java
40 lines
798 B
Java
|
|
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;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|