(1)asn导入加入组织国家,asn号验证,组织国家不能为空,asn号不能为两个组织所有

(2)新增asn_keyword_cfg表,用于保存并下发有效且含审核通过asn ip的 asn号
(3)asn 导入去除条数限制
(4)页面asn select选项还是会影响加载页面速度,现在改为input
(5)asn_group_info 修改org_group_id为issued_ips,用于保存审核通过的asn ip
(6)分组复用url配置文件补全v1
This commit is contained in:
wangxin
2019-01-06 11:24:49 +08:00
parent 9979bb26b2
commit f56a0fe09a
37 changed files with 968 additions and 374 deletions

View File

@@ -83,7 +83,7 @@ public class CfgIndexInfo extends BaseCfg<CfgIndexInfo> {
private String organization;
private String country;
private String detail;
private List<AsnGroupInfo> asnGroups;
private List<AsnKeywordCfg> asnKeywords;
/*private CachePolicyUserRegion cachePolicyUserRegion;//缓存策略用户自定义域参数
@@ -95,15 +95,16 @@ public class CfgIndexInfo extends BaseCfg<CfgIndexInfo> {
}*/
public List<AsnGroupInfo> getAsnGroups() {
return asnGroups;
}
public void setAsnGroups(List<AsnGroupInfo> asnGroups) {
this.asnGroups = asnGroups;
}
public String getOrganization() {
return organization;
}
public List<AsnKeywordCfg> getAsnKeywords() {
return asnKeywords;
}
public void setAsnKeywords(List<AsnKeywordCfg> asnKeywords) {
this.asnKeywords = asnKeywords;
}
public void setOrganization(String organization) {
this.organization = organization;
}