asn ip、ip复用增加导出功能,增加NTC_KEYWORDS_URL_LOG日志
This commit is contained in:
@@ -4,6 +4,7 @@ import java.util.Date;
|
||||
|
||||
import com.google.gson.annotations.Expose;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import com.nis.util.excel.ExcelField;
|
||||
import com.nis.web.service.BaseService;
|
||||
|
||||
/**
|
||||
@@ -19,27 +20,52 @@ public class IpMultiplexPoolCfg extends BaseCfg<IpMultiplexPoolCfg> {
|
||||
private static final long serialVersionUID = -5902468971425910528L;
|
||||
private String indexTable="ip_multiplex_pool_cfg";
|
||||
@Expose
|
||||
@ExcelField(title="cfg_id",sort=0)
|
||||
@SerializedName("cfgId")
|
||||
private Integer compileId;
|
||||
@Expose
|
||||
@SerializedName("addrType")
|
||||
private String ipType;
|
||||
@Expose
|
||||
private Integer protocol;
|
||||
@Expose
|
||||
@ExcelField(title="server_ip",sort=6)
|
||||
@SerializedName("ip")
|
||||
private String destIpAddress;
|
||||
@Expose
|
||||
@ExcelField(title="server_port",sort=9)
|
||||
private String port;
|
||||
@Expose
|
||||
private Integer direction;
|
||||
@Expose
|
||||
private String userRegion;
|
||||
@Expose
|
||||
private Integer location;
|
||||
@Expose
|
||||
private Integer policyGroup;
|
||||
private Integer policyGroup;
|
||||
@ExcelField(title="group",sort=2)
|
||||
private String groupName;
|
||||
/**
|
||||
* 方向
|
||||
*/
|
||||
@Expose
|
||||
@SerializedName("direction")
|
||||
@ExcelField(title="direction",dictType="DIRECTION",sort=13)
|
||||
protected Integer direction ;
|
||||
/**
|
||||
* 协议
|
||||
*/
|
||||
@Expose
|
||||
@SerializedName("protocol")
|
||||
@ExcelField(title="protocol",dictType="PROTOCOL",sort=12)
|
||||
protected Integer protocol ;
|
||||
|
||||
@ExcelField(title="isp" ,sort=3)
|
||||
private String ispName;
|
||||
|
||||
|
||||
public String getIspName() {
|
||||
return ispName;
|
||||
}
|
||||
public void setIspName(String ispName) {
|
||||
this.ispName = ispName;
|
||||
}
|
||||
public Integer getCompileId() {
|
||||
return compileId;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user