(1)asn_ip_cfg增加四列 (2)新增asn_group_info表 (3)asn ip菜单移动到policy object下,新增审核审计菜单 (4)asn ip导入修改,适应新的需求放弃了使用AsnCache,直接从数据库查 (5)asn ip加入审核流程 (6)Packet IP选择asn时,改为选中一个组织,审核下发的配置为as号字符串域 (7)asn ip 新增业务新增function_service_dict字典,serviceId为400
68 lines
1.6 KiB
Java
68 lines
1.6 KiB
Java
package com.nis.domain.configuration.template;
|
||
|
||
import com.nis.util.excel.ExcelField;
|
||
|
||
/**
|
||
* @Description: excel导入ASN IP类配置
|
||
*/
|
||
public class AsnIpTemplate extends BasicTemplate{
|
||
|
||
/**
|
||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||
*
|
||
* @since 1.0.0
|
||
*/
|
||
|
||
private String cfgDesc;
|
||
private String userRegion1;
|
||
private String destIpAddress;
|
||
private String organization;
|
||
private String country;
|
||
private String detail;
|
||
|
||
// @ExcelField(title="config_describe",align=2,sort=1)
|
||
public String getCfgDesc() {
|
||
return cfgDesc;
|
||
}
|
||
public void setCfgDesc(String cfgDesc) {
|
||
this.cfgDesc = cfgDesc;
|
||
}
|
||
@ExcelField(title="asn_no",align=2,sort=11)
|
||
public String getUserRegion1() {
|
||
return userRegion1;
|
||
}
|
||
public void setUserRegion1(String userRegion1) {
|
||
this.userRegion1 = userRegion1;
|
||
}
|
||
@ExcelField(title="server_ip",align=2,sort=12)
|
||
public String getDestIpAddress() {
|
||
return destIpAddress;
|
||
}
|
||
|
||
public void setDestIpAddress(String destIpAddress) {
|
||
this.destIpAddress = destIpAddress;
|
||
}
|
||
@ExcelField(title="organization",align=2,sort=1)
|
||
public String getOrganization() {
|
||
return organization;
|
||
}
|
||
public void setOrganization(String organization) {
|
||
this.organization = organization;
|
||
}
|
||
@ExcelField(title="country",align=2,sort=14)
|
||
public String getCountry() {
|
||
return country;
|
||
}
|
||
public void setCountry(String country) {
|
||
this.country = country;
|
||
}
|
||
@ExcelField(title="detail",align=2,sort=13)
|
||
public String getDetail() {
|
||
return detail;
|
||
}
|
||
public void setDetail(String detail) {
|
||
this.detail = detail;
|
||
}
|
||
|
||
}
|