46 lines
1.0 KiB
Java
46 lines
1.0 KiB
Java
package com.nis.domain.log;
|
|
|
|
import com.nis.util.excel.ExcelField;
|
|
|
|
public class NtcCollectRadiusLog extends BaseLogEntity<NtcCollectRadiusLog> {
|
|
|
|
private static final long serialVersionUID = -4947912502754359817L;
|
|
|
|
@ExcelField(title="message_type",dictType="MESSAGE_TYPE",sort=10)
|
|
protected Integer code;
|
|
@ExcelField(title="nas_ip",sort=15)
|
|
protected String nasIp;
|
|
@ExcelField(title="framed_ip",sort=20)
|
|
protected String framedIp;
|
|
@ExcelField(title="log_user_name",sort=25)
|
|
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;
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|