diff --git a/src/main/java/com/nis/domain/configuration/AppFeatureIndex.java b/src/main/java/com/nis/domain/configuration/AppFeatureIndex.java index 897304222..45ef53501 100644 --- a/src/main/java/com/nis/domain/configuration/AppFeatureIndex.java +++ b/src/main/java/com/nis/domain/configuration/AppFeatureIndex.java @@ -133,23 +133,5 @@ public class AppFeatureIndex extends BaseCfg { public void setNumCfgList(List numCfgList) { this.numCfgList = numCfgList; } - public Integer getExprType() { - return exprType; - } - public void setExprType(Integer exprType) { - this.exprType = exprType; - } - public Integer getMatchMethod() { - return matchMethod; - } - public void setMatchMethod(Integer matchMethod) { - this.matchMethod = matchMethod; - } - public Integer getIsHexbin() { - return isHexbin; - } - public void setIsHexbin(Integer isHexbin) { - this.isHexbin = isHexbin; - } } diff --git a/src/main/java/com/nis/web/controller/BaseController.java b/src/main/java/com/nis/web/controller/BaseController.java index 403430b37..0cdbfecec 100644 --- a/src/main/java/com/nis/web/controller/BaseController.java +++ b/src/main/java/com/nis/web/controller/BaseController.java @@ -2040,7 +2040,6 @@ public class BaseController { cfg.setBehavCode(Integer.parseInt(behaviorId)); } - AppFeatureIndex appfeature = new AppFeatureIndex(); BeanUtils.copyProperties(cfg, appfeature,new String[] {"cfgId"}); if(regionDict!=null){ @@ -2048,13 +2047,7 @@ public class BaseController { appfeature.setCfgRegionValue(regionDict.getConfigRegionValue()); appfeature.setCfgRegionType(String.valueOf(regionDict.getRegionType())); } - if(cfg.getDistrict().equals("L3_header")) { - appfeature.setIsHexbin(1); - appfeature.setExprType(3); - appfeature.setMatchMethod(0); - } appFeatureIndexs.add(appfeature); - ind++; } ipCfgService.saveAndSend(regionDict, serviceDict, specificServiceCfg, _complexkeywordCfgs, cfgIndexInfos, appPolicyCfgs,appFeatureIndexs,isSend.equals("1"));