2018-10-25 12:59:11 +08:00
|
|
|
|
package com.nis.domain.configuration.template;
|
|
|
|
|
|
|
|
|
|
|
|
import com.nis.util.excel.ExcelField;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @Description: excel导入ASN IP类配置
|
|
|
|
|
|
*/
|
2018-11-11 19:36:53 +08:00
|
|
|
|
public class AsnIpTemplate extends BasicTemplate{
|
2018-10-25 12:59:11 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
|
|
|
|
|
*
|
|
|
|
|
|
* @since 1.0.0
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
private String cfgDesc;
|
2018-10-26 18:57:20 +08:00
|
|
|
|
private String userRegion1;
|
2018-10-25 12:59:11 +08:00
|
|
|
|
private String destIpAddress;
|
2019-01-04 18:28:57 +06:00
|
|
|
|
private String organization;
|
|
|
|
|
|
private String country;
|
|
|
|
|
|
private String detail;
|
2018-10-25 12:59:11 +08:00
|
|
|
|
|
2019-01-04 18:28:57 +06:00
|
|
|
|
// @ExcelField(title="config_describe",align=2,sort=1)
|
2018-10-25 12:59:11 +08:00
|
|
|
|
public String getCfgDesc() {
|
|
|
|
|
|
return cfgDesc;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setCfgDesc(String cfgDesc) {
|
|
|
|
|
|
this.cfgDesc = cfgDesc;
|
|
|
|
|
|
}
|
2018-10-25 18:22:27 +08:00
|
|
|
|
@ExcelField(title="asn_no",align=2,sort=11)
|
2018-10-26 18:57:20 +08:00
|
|
|
|
public String getUserRegion1() {
|
|
|
|
|
|
return userRegion1;
|
2018-10-25 18:22:27 +08:00
|
|
|
|
}
|
2018-10-26 18:57:20 +08:00
|
|
|
|
public void setUserRegion1(String userRegion1) {
|
|
|
|
|
|
this.userRegion1 = userRegion1;
|
2018-10-25 18:22:27 +08:00
|
|
|
|
}
|
2018-10-25 12:59:11 +08:00
|
|
|
|
@ExcelField(title="server_ip",align=2,sort=12)
|
|
|
|
|
|
public String getDestIpAddress() {
|
|
|
|
|
|
return destIpAddress;
|
|
|
|
|
|
}
|
2018-10-26 18:57:20 +08:00
|
|
|
|
|
2018-10-25 12:59:11 +08:00
|
|
|
|
public void setDestIpAddress(String destIpAddress) {
|
|
|
|
|
|
this.destIpAddress = destIpAddress;
|
|
|
|
|
|
}
|
2019-01-04 18:28:57 +06:00
|
|
|
|
@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;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-10-25 12:59:11 +08:00
|
|
|
|
}
|