2019-01-04 18:28:57 +06:00
|
|
|
package com.nis.domain.basics;
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
import com.nis.domain.configuration.BaseCfg;
|
|
|
|
|
import com.nis.util.excel.ExcelField;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @ClassName: AsnGroupInfo.java
|
|
|
|
|
* @Description: ASN分组
|
|
|
|
|
* @version V1.0
|
|
|
|
|
*/
|
|
|
|
|
public class AsnGroupInfo extends BaseCfg<AsnGroupInfo> implements Serializable{
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
private static final long serialVersionUID = 7931466570918016654L;
|
|
|
|
|
private Integer groupId;
|
2019-01-06 11:24:49 +08:00
|
|
|
private Long issuedIPs;
|
2019-01-04 18:28:57 +06:00
|
|
|
@ExcelField(title="cfg_id",sort=301)
|
|
|
|
|
private Integer compileId;
|
2019-01-06 11:24:49 +08:00
|
|
|
@ExcelField(title="asn_name",sort=302)
|
2019-01-04 18:28:57 +06:00
|
|
|
private String organization;
|
2019-01-06 11:24:49 +08:00
|
|
|
@ExcelField(title="country_code",sort=303)
|
2019-01-04 18:28:57 +06:00
|
|
|
private String country;
|
2019-01-06 11:24:49 +08:00
|
|
|
@ExcelField(title="details",sort=304)
|
2019-01-04 18:28:57 +06:00
|
|
|
private String detail;
|
|
|
|
|
private Integer isValid;
|
|
|
|
|
@ExcelField(title="ASN",sort=305)
|
|
|
|
|
private Long asnId;
|
|
|
|
|
|
2019-01-16 14:33:29 +06:00
|
|
|
private Integer isUsed;
|
|
|
|
|
private Integer regionId;
|
2019-01-18 11:14:05 +06:00
|
|
|
private Integer orgGroupId;
|
2019-01-06 11:24:49 +08:00
|
|
|
|
2019-02-18 10:39:49 +08:00
|
|
|
private Integer onlyGroupId;// ip地址独用组id
|
2019-01-16 14:33:29 +06:00
|
|
|
|
2019-02-18 10:39:49 +08:00
|
|
|
public Integer getOnlyGroupId() {
|
|
|
|
|
return onlyGroupId;
|
|
|
|
|
}
|
|
|
|
|
public void setOnlyGroupId(Integer onlyGroupId) {
|
|
|
|
|
this.onlyGroupId = onlyGroupId;
|
|
|
|
|
}
|
2019-01-18 11:14:05 +06:00
|
|
|
public Integer getOrgGroupId() {
|
|
|
|
|
return orgGroupId;
|
|
|
|
|
}
|
|
|
|
|
public void setOrgGroupId(Integer orgGroupId) {
|
|
|
|
|
this.orgGroupId = orgGroupId;
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-16 14:33:29 +06:00
|
|
|
public Integer getIsUsed() {
|
|
|
|
|
return isUsed;
|
|
|
|
|
}
|
|
|
|
|
public void setIsUsed(Integer isUsed) {
|
|
|
|
|
this.isUsed = isUsed;
|
|
|
|
|
}
|
2019-01-06 11:24:49 +08:00
|
|
|
public Long getIssuedIPs() {
|
|
|
|
|
return issuedIPs;
|
2019-01-04 18:28:57 +06:00
|
|
|
}
|
|
|
|
|
|
2019-01-06 11:24:49 +08:00
|
|
|
public void setIssuedIPs(Long issuedIPs) {
|
|
|
|
|
this.issuedIPs = issuedIPs;
|
2019-01-04 18:28:57 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getCompileId() {
|
|
|
|
|
return compileId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCompileId(Integer compileId) {
|
|
|
|
|
this.compileId = compileId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getGroupId() {
|
|
|
|
|
return groupId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setGroupId(Integer groupId) {
|
|
|
|
|
this.groupId = groupId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getOrganization() {
|
|
|
|
|
return organization;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setOrganization(String organization) {
|
|
|
|
|
this.organization = organization;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getCountry() {
|
|
|
|
|
return country;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCountry(String country) {
|
|
|
|
|
this.country = country;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDetail() {
|
|
|
|
|
return detail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDetail(String detail) {
|
|
|
|
|
this.detail = detail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getIsValid() {
|
|
|
|
|
return isValid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setIsValid(Integer isValid) {
|
|
|
|
|
this.isValid = isValid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Date getCreateTime() {
|
|
|
|
|
return createTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
|
|
|
this.createTime = createTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getCreatorId() {
|
|
|
|
|
return creatorId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCreatorId(Long creatorId) {
|
|
|
|
|
this.creatorId = creatorId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Date getEditTime() {
|
|
|
|
|
return editTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setEditTime(Date editTime) {
|
|
|
|
|
this.editTime = editTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getEditorId() {
|
|
|
|
|
return editorId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setEditorId(Long editorId) {
|
|
|
|
|
this.editorId = editorId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getAsnId() {
|
|
|
|
|
return asnId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setAsnId(Long asnId) {
|
|
|
|
|
this.asnId = asnId;
|
|
|
|
|
}
|
2019-01-16 14:33:29 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getRegionId() {
|
|
|
|
|
return regionId;
|
|
|
|
|
}
|
|
|
|
|
public void setRegionId(Integer regionId) {
|
|
|
|
|
this.regionId = regionId;
|
|
|
|
|
}
|
2019-01-04 18:28:57 +06:00
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
|
return super.toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|