app payload导入L3_header特征配置时增加固定属性值;相关属性校验修改;导入模板批注修改

This commit is contained in:
zhangwenqing
2019-01-03 15:30:14 +08:00
parent 1e0fc76160
commit 55243010b7
7 changed files with 233 additions and 190 deletions

View File

@@ -133,5 +133,23 @@ public class AppFeatureIndex extends BaseCfg<AppFeatureIndex> {
public void setNumCfgList(List<AppTcpCfg> 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;
}
}