BGP、DNS、SSL、HTTP配置列表增加源/目的IP、关键字查询字段.

This commit is contained in:
zhangwq
2018-11-04 15:36:53 +08:00
parent 47bbea8652
commit 65ae455f38
11 changed files with 107 additions and 63 deletions

View File

@@ -72,6 +72,8 @@ public class CfgIndexInfo extends BaseCfg<CfgIndexInfo> {
private List<P2pKeywordCfg> p2pKeywordList;
private Integer sourceCompileId;
private String searchKeywords;// 列表关键字查询字段
public Integer getSourceCompileId() {
return sourceCompileId;
}
@@ -323,5 +325,11 @@ public class CfgIndexInfo extends BaseCfg<CfgIndexInfo> {
public void setIndexTable(String indexTable) {
this.indexTable = indexTable;
}
public String getSearchKeywords() {
return searchKeywords;
}
public void setSearchKeywords(String searchKeywords) {
this.searchKeywords = searchKeywords;
}
}