53 lines
1.4 KiB
Java
53 lines
1.4 KiB
Java
package com.nis.domain.configuration.template;
|
|
|
|
import com.nis.util.excel.ExcelField;
|
|
|
|
/**
|
|
* @Description: excel导入字符串类配置
|
|
*/
|
|
public class StringAllNotDoLogTemplate extends BasicTemplate{
|
|
private String cfgDesc;
|
|
|
|
private String cfgKeywords;
|
|
private Integer matchMethod ;
|
|
private Integer isHex;
|
|
private Integer isCaseInsenstive;
|
|
|
|
@ExcelField(title="config_describe",align=2,sort=1)
|
|
public String getCfgDesc() {
|
|
return cfgDesc;
|
|
}
|
|
public void setCfgDesc(String cfgDesc) {
|
|
this.cfgDesc = cfgDesc;
|
|
}
|
|
@ExcelField(title="key_word",sort=11)
|
|
public String getCfgKeywords() {
|
|
return cfgKeywords;
|
|
}
|
|
public void setCfgKeywords(String cfgKeywords) {
|
|
this.cfgKeywords = cfgKeywords;
|
|
}
|
|
@ExcelField(title="match_method",dictType="MATCH_METHOD",sort=13)
|
|
public Integer getMatchMethod() {
|
|
return matchMethod;
|
|
}
|
|
public void setMatchMethod(Integer matchMethod) {
|
|
this.matchMethod = matchMethod;
|
|
}
|
|
@ExcelField(title="is_hex",dictType="IS_HEX",sort=14)
|
|
public Integer getIsHex() {
|
|
return isHex;
|
|
}
|
|
public void setIsHex(Integer isHex) {
|
|
this.isHex = isHex;
|
|
}
|
|
@ExcelField(title="is_case_insenstive",dictType="CASE_INSENSTIVE",sort=15)
|
|
public Integer getIsCaseInsenstive() {
|
|
return isCaseInsenstive;
|
|
}
|
|
public void setIsCaseInsenstive(Integer isCaseInsenstive) {
|
|
this.isCaseInsenstive = isCaseInsenstive;
|
|
}
|
|
|
|
}
|