修改isHex 和isCaseInsenstive的set get方法

This commit is contained in:
wangxin
2018-10-20 15:36:22 +08:00
parent 40007ea93d
commit 16e8b9b855
2 changed files with 8 additions and 8 deletions

View File

@@ -179,16 +179,16 @@ public class BaseStringCfg<T> extends BaseCfg<T> {
this.ntcSubscribeIdCfg = ntcSubscribeIdCfg; this.ntcSubscribeIdCfg = ntcSubscribeIdCfg;
} }
public Integer getIsHex() { public Integer getIsHex() {
return isHex=this.isHexbin; return isHex;
} }
public void setIsHex(Integer isHex) { public void setIsHex(Integer isHex) {
this.isHex = this.isHexbin; this.isHex = isHex;
} }
public Integer getIsCaseInsenstive() { public Integer getIsCaseInsenstive() {
return isCaseInsenstive=this.isHexbin; return isCaseInsenstive;
} }
public void setIsCaseInsenstive(Integer isCaseInsenstive) { public void setIsCaseInsenstive(Integer isCaseInsenstive) {
this.isCaseInsenstive =this.isHexbin;; this.isCaseInsenstive =isCaseInsenstive;
} }
public static List<BaseStringCfg> replaceBaseKeyList(List<BaseStringCfg> list){ public static List<BaseStringCfg> replaceBaseKeyList(List<BaseStringCfg> list){

View File

@@ -152,16 +152,16 @@ public class ComplexkeywordCfg extends BaseCfg<ComplexkeywordCfg>{
this.isHexbin = isHexbin; this.isHexbin = isHexbin;
} }
public Integer getIsHex() { public Integer getIsHex() {
return isHex= this.isHexbin; return isHex;
} }
public void setIsHex(Integer isHex) { public void setIsHex(Integer isHex) {
this.isHex = this.isHexbin; this.isHex =isHex;
} }
public Integer getIsCaseInsenstive() { public Integer getIsCaseInsenstive() {
return isCaseInsenstive=this.isHexbin; return isCaseInsenstive;
} }
public void setIsCaseInsenstive(Integer isCaseInsenstive) { public void setIsCaseInsenstive(Integer isCaseInsenstive) {
this.isCaseInsenstive =this.isHexbin;; this.isCaseInsenstive =isCaseInsenstive;
} }
/* (non-Javadoc) /* (non-Javadoc)
* @see com.nis.domain.configuration.BaseCfg#initDefaultValue() * @see com.nis.domain.configuration.BaseCfg#initDefaultValue()