33 lines
763 B
Java
33 lines
763 B
Java
|
|
package com.nis.domain.configuration.template;
|
|||
|
|
|
|||
|
|
import com.nis.util.excel.ExcelField;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* EXCEL DomainIntercept 导入模板(监测)
|
|||
|
|
* @author dell
|
|||
|
|
*
|
|||
|
|
*/
|
|||
|
|
public class DomainInterceptMonitTemplate extends StringAllTemplate{
|
|||
|
|
|
|||
|
|
private String userRegion5;
|
|||
|
|
private String cfgKeywords;
|
|||
|
|
|
|||
|
|
@ExcelField(title="intercept_intensity",dictType="INTERCEPT_DOMAIN_INTENSITY",align=2,sort=2)
|
|||
|
|
public String getUserRegion5() {
|
|||
|
|
return userRegion5;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void setUserRegion5(String userRegion5) {
|
|||
|
|
this.userRegion5 = userRegion5;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
@ExcelField(title="domain_name",sort=11)
|
|||
|
|
public String getCfgKeywords() {
|
|||
|
|
return cfgKeywords;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void setCfgKeywords(String cfgKeywords) {
|
|||
|
|
this.cfgKeywords = cfgKeywords;
|
|||
|
|
}
|
|||
|
|
}
|