修改isHex 和isCaseInsenstive的set get方法
This commit is contained in:
@@ -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){
|
||||||
|
|||||||
@@ -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()
|
||||||
|
|||||||
Reference in New Issue
Block a user