(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:
@@ -17,25 +17,27 @@ public class AsnGroupInfo extends BaseCfg<AsnGroupInfo> implements Serializable{
|
||||
*/
|
||||
private static final long serialVersionUID = 7931466570918016654L;
|
||||
private Integer groupId;
|
||||
private Integer orgGroupId;
|
||||
private Long issuedIPs;
|
||||
@ExcelField(title="cfg_id",sort=301)
|
||||
private Integer compileId;
|
||||
@ExcelField(title="organization",sort=302)
|
||||
@ExcelField(title="asn_name",sort=302)
|
||||
private String organization;
|
||||
@ExcelField(title="organization",sort=303)
|
||||
@ExcelField(title="country_code",sort=303)
|
||||
private String country;
|
||||
@ExcelField(title="organization",sort=304)
|
||||
@ExcelField(title="details",sort=304)
|
||||
private String detail;
|
||||
private Integer isValid;
|
||||
@ExcelField(title="ASN",sort=305)
|
||||
private Long asnId;
|
||||
|
||||
public Integer getOrgGroupId() {
|
||||
return orgGroupId;
|
||||
|
||||
|
||||
public Long getIssuedIPs() {
|
||||
return issuedIPs;
|
||||
}
|
||||
|
||||
public void setOrgGroupId(Integer orgGroupId) {
|
||||
this.orgGroupId = orgGroupId;
|
||||
public void setIssuedIPs(Long issuedIPs) {
|
||||
this.issuedIPs = issuedIPs;
|
||||
}
|
||||
|
||||
public Integer getCompileId() {
|
||||
|
||||
Reference in New Issue
Block a user