@@ -44,6 +44,9 @@ public class CfgIndexInfo extends BaseCfg<CfgIndexInfo> {
|
||||
private SslKeywordCfg sslCfg;
|
||||
private List<BaseStringCfg> sslList;
|
||||
private List<ComplexkeywordCfg> domainList;
|
||||
private List<ComplexkeywordCfg> complexList;
|
||||
private List<BaseStringCfg> stringList;
|
||||
private List<FileDigestCfg> digestList;
|
||||
|
||||
public AvVoipAccountCfg getVoipAccount() {
|
||||
return voipAccount;
|
||||
@@ -159,6 +162,24 @@ public class CfgIndexInfo extends BaseCfg<CfgIndexInfo> {
|
||||
public void setDomainList(List<ComplexkeywordCfg> domainList) {
|
||||
this.domainList = domainList;
|
||||
}
|
||||
public List<ComplexkeywordCfg> getComplexList() {
|
||||
return complexList;
|
||||
}
|
||||
public void setComplexList(List<ComplexkeywordCfg> complexList) {
|
||||
this.complexList = complexList;
|
||||
}
|
||||
public List<BaseStringCfg> getStringList() {
|
||||
return stringList;
|
||||
}
|
||||
public void setStringList(List<BaseStringCfg> stringList) {
|
||||
this.stringList = stringList;
|
||||
}
|
||||
public List<FileDigestCfg> getDigestList() {
|
||||
return digestList;
|
||||
}
|
||||
public void setDigestList(List<FileDigestCfg> digestList) {
|
||||
this.digestList = digestList;
|
||||
}
|
||||
public static String getTablename() {
|
||||
return tableName;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
/**
|
||||
*@Title: CfgIndexInfo.java
|
||||
*@Package com.nis.domain.restful
|
||||
*@Description 索引公共表
|
||||
*@author dell
|
||||
*@date 2018年5月17日 下午16:59:17
|
||||
*@version 版本号
|
||||
*/
|
||||
package com.nis.domain.configuration;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* 文件摘要配置
|
||||
* @ClassName: FileDigestCfg.java
|
||||
* @author (dell)
|
||||
* @date 2018年5月17日 下午16:59:17
|
||||
* @version V1.0
|
||||
*/
|
||||
public class FileDigestCfg extends BaseCfg<FileDigestCfg> {
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 2796500715438264119L;
|
||||
private static final String tableName="file_digest_cfg";
|
||||
private Long rawLen;
|
||||
private String digest;
|
||||
private Integer cfdsLevel;
|
||||
|
||||
public static String getTablename() {
|
||||
return tableName;
|
||||
}
|
||||
public Long getRawLen() {
|
||||
return rawLen;
|
||||
}
|
||||
|
||||
public void setRawLen(Long rawLen) {
|
||||
this.rawLen = rawLen;
|
||||
}
|
||||
|
||||
public String getDigest() {
|
||||
return digest;
|
||||
}
|
||||
|
||||
public void setDigest(String digest) {
|
||||
this.digest = digest;
|
||||
}
|
||||
public Integer getCfdsLevel() {
|
||||
return cfdsLevel;
|
||||
}
|
||||
public void setCfdsLevel(Integer cfdsLevel) {
|
||||
this.cfdsLevel = cfdsLevel;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -16,6 +16,7 @@ package com.nis.domain.configuration;
|
||||
* @version V1.0
|
||||
*/
|
||||
public class MailKeywordCfg extends ComplexkeywordCfg {
|
||||
private static final String tableName = "mail_keyword_cfg";
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
@@ -34,5 +35,8 @@ public class MailKeywordCfg extends ComplexkeywordCfg {
|
||||
this.matchMethod=0;
|
||||
this.isHexbin=0;
|
||||
}
|
||||
public static String getTablename() {
|
||||
return tableName;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user