2018-09-23 15:02:01 +08:00
|
|
|
|
/**
|
|
|
|
|
|
*@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.ArrayList;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
import com.nis.domain.basics.AsnIpCfg;
|
2018-10-24 18:36:31 +08:00
|
|
|
|
import com.nis.util.excel.ExcelField;
|
2018-09-23 15:02:01 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @ClassName: CfgIndexInfo.java
|
|
|
|
|
|
* @author (dell)
|
|
|
|
|
|
* @date 2018年5月17日 下午16:59:17
|
|
|
|
|
|
* @version V1.0
|
|
|
|
|
|
*/
|
|
|
|
|
|
public class AppFeatureIndex extends BaseCfg<AppFeatureIndex> {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
|
|
|
|
|
private static final long serialVersionUID = -8069201965300255275L;
|
|
|
|
|
|
private static final String tableName="app_feature_index";
|
|
|
|
|
|
private Integer appCode;//specific_service_cfg表一级节点的spec_service_code
|
2018-11-08 10:30:32 +08:00
|
|
|
|
@ExcelField(title="social_app",sort=3)
|
2018-09-23 15:02:01 +08:00
|
|
|
|
private String appName;
|
|
|
|
|
|
private Integer specServiceId;
|
|
|
|
|
|
private Integer behavCode;//specific_service_cfg表二级节点的spec_service_code
|
|
|
|
|
|
private AppHttpCfg complexStrCfg;
|
|
|
|
|
|
private AppByteCfg strCfg;
|
|
|
|
|
|
private AppIpCfg ipCfg;
|
|
|
|
|
|
private List<AppIpCfg> ipPortList = new ArrayList();
|
|
|
|
|
|
private List<AppStringFeatureCfg> strList = new ArrayList();
|
|
|
|
|
|
private List<AppComplexFeatureCfg> complexList = new ArrayList();
|
2018-12-17 21:26:04 +06:00
|
|
|
|
private List<AppTcpCfg> numCfgList = new ArrayList();
|
2018-09-23 15:02:01 +08:00
|
|
|
|
protected Integer exprType ;
|
|
|
|
|
|
protected Integer matchMethod ;
|
|
|
|
|
|
protected Integer isHexbin;
|
|
|
|
|
|
private String cfgRegionType;
|
|
|
|
|
|
private String cfgRegionValue;
|
|
|
|
|
|
private String cfgRegionCode1;
|
2019-01-13 21:32:25 +06:00
|
|
|
|
private Integer isDrop;//
|
|
|
|
|
|
private Integer isLoop;
|
|
|
|
|
|
private Integer dropTime;//drop持续时间,默认180s,0-1800s
|
|
|
|
|
|
private Integer loopTime;//loop持续时间,默认180s,0-1800s
|
|
|
|
|
|
private Integer isRelation;
|
|
|
|
|
|
private Integer relationTime;//关联持续时间,默认10s,0-180s
|
2018-09-23 15:02:01 +08:00
|
|
|
|
public static String getTablename() {
|
|
|
|
|
|
return tableName;
|
|
|
|
|
|
}
|
|
|
|
|
|
public Integer getAppCode() {
|
|
|
|
|
|
return appCode;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setAppCode(Integer appCode) {
|
|
|
|
|
|
this.appCode = appCode;
|
|
|
|
|
|
}
|
|
|
|
|
|
public Integer getSpecServiceId() {
|
|
|
|
|
|
return specServiceId;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setSpecServiceId(Integer specServiceId) {
|
|
|
|
|
|
this.specServiceId = specServiceId;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<AppIpCfg> getIpPortList() {
|
|
|
|
|
|
return ipPortList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setIpPortList(List<AppIpCfg> ipPortList) {
|
|
|
|
|
|
this.ipPortList = ipPortList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<AppComplexFeatureCfg> getComplexList() {
|
|
|
|
|
|
return complexList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setComplexList(List<AppComplexFeatureCfg> complexList) {
|
|
|
|
|
|
this.complexList = complexList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public AppHttpCfg getComplexStrCfg() {
|
|
|
|
|
|
return complexStrCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setComplexStrCfg(AppHttpCfg complexStrCfg) {
|
|
|
|
|
|
this.complexStrCfg = complexStrCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
public AppByteCfg getStrCfg() {
|
|
|
|
|
|
return strCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setStrCfg(AppByteCfg strCfg) {
|
|
|
|
|
|
this.strCfg = strCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
public AppIpCfg getIpCfg() {
|
|
|
|
|
|
return ipCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setIpCfg(AppIpCfg ipCfg) {
|
|
|
|
|
|
this.ipCfg = ipCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<AppStringFeatureCfg> getStrList() {
|
|
|
|
|
|
return strList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setStrList(List<AppStringFeatureCfg> strList) {
|
|
|
|
|
|
this.strList = strList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getAppName() {
|
|
|
|
|
|
return appName;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setAppName(String appName) {
|
|
|
|
|
|
this.appName = appName;
|
|
|
|
|
|
}
|
|
|
|
|
|
public Integer getBehavCode() {
|
|
|
|
|
|
return behavCode;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setBehavCode(Integer behavCode) {
|
|
|
|
|
|
this.behavCode = behavCode;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getCfgRegionType() {
|
|
|
|
|
|
return cfgRegionType;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setCfgRegionType(String cfgRegionType) {
|
|
|
|
|
|
this.cfgRegionType = cfgRegionType;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getCfgRegionValue() {
|
|
|
|
|
|
return cfgRegionValue;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setCfgRegionValue(String cfgRegionValue) {
|
|
|
|
|
|
this.cfgRegionValue = cfgRegionValue;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getCfgRegionCode1() {
|
|
|
|
|
|
return cfgRegionCode1;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setCfgRegionCode1(String cfgRegionCode1) {
|
|
|
|
|
|
this.cfgRegionCode1 = cfgRegionCode1;
|
|
|
|
|
|
}
|
2018-12-17 21:26:04 +06:00
|
|
|
|
public List<AppTcpCfg> getNumCfgList() {
|
|
|
|
|
|
return numCfgList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setNumCfgList(List<AppTcpCfg> numCfgList) {
|
|
|
|
|
|
this.numCfgList = numCfgList;
|
|
|
|
|
|
}
|
2019-01-13 21:32:25 +06:00
|
|
|
|
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;
|
|
|
|
|
|
}
|
|
|
|
|
|
public Integer getIsDrop() {
|
|
|
|
|
|
return isDrop;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setIsDrop(Integer isDrop) {
|
|
|
|
|
|
this.isDrop = isDrop;
|
|
|
|
|
|
}
|
|
|
|
|
|
public Integer getIsLoop() {
|
|
|
|
|
|
return isLoop;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setIsLoop(Integer isLoop) {
|
|
|
|
|
|
this.isLoop = isLoop;
|
|
|
|
|
|
}
|
|
|
|
|
|
public Integer getDropTime() {
|
|
|
|
|
|
return dropTime;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setDropTime(Integer dropTime) {
|
|
|
|
|
|
this.dropTime = dropTime;
|
|
|
|
|
|
}
|
|
|
|
|
|
public Integer getLoopTime() {
|
|
|
|
|
|
return loopTime;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setLoopTime(Integer loopTime) {
|
|
|
|
|
|
this.loopTime = loopTime;
|
|
|
|
|
|
}
|
|
|
|
|
|
public Integer getIsRelation() {
|
|
|
|
|
|
return isRelation;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setIsRelation(Integer isRelation) {
|
|
|
|
|
|
this.isRelation = isRelation;
|
|
|
|
|
|
}
|
|
|
|
|
|
public Integer getRelationTime() {
|
|
|
|
|
|
return relationTime;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setRelationTime(Integer relationTime) {
|
|
|
|
|
|
this.relationTime = relationTime;
|
|
|
|
|
|
}
|
2018-09-23 15:02:01 +08:00
|
|
|
|
|
|
|
|
|
|
}
|