增加APP特征配置功能

This commit is contained in:
zhangwei
2018-06-23 17:29:14 +08:00
parent d630f20b17
commit 5bc4423076
19 changed files with 3131 additions and 103 deletions

View File

@@ -33,6 +33,7 @@ public class AppByteCfg extends BaseCfg<AppByteCfg> {
private Integer specServiceId;
private String bytes;
private String cfgKeywords;
private String appName;
@Expose
@ExcelField(title="expression_type")
@@ -126,5 +127,13 @@ public class AppByteCfg extends BaseCfg<AppByteCfg> {
public void setCfgKeywords(String cfgKeywords) {
this.cfgKeywords = cfgKeywords;
}
public String getAppName() {
return appName;
}
public void setAppName(String appName) {
this.appName = appName;
}
}

View File

@@ -33,6 +33,7 @@ public class AppDomainCfg extends BaseCfg<AppDomainCfg> {
private Integer specServiceId;
private String domain;
private String cfgKeywords;
private String appName;
@Expose
@ExcelField(title="expression_type")
@SerializedName("exprType")
@@ -122,4 +123,12 @@ public class AppDomainCfg extends BaseCfg<AppDomainCfg> {
public void setCfgKeywords(String cfgKeywords) {
this.cfgKeywords = cfgKeywords;
}
public String getAppName() {
return appName;
}
public void setAppName(String appName) {
this.appName = appName;
}
}

View File

@@ -33,6 +33,7 @@ public class AppHttpCfg extends BaseCfg<AppHttpCfg> {
private Integer specServiceId;
private String district;
private String cfgKeywords;
private String appName;
@Expose
@ExcelField(title="expression_type")
@@ -126,5 +127,13 @@ public class AppHttpCfg extends BaseCfg<AppHttpCfg> {
public void setCfgKeywords(String cfgKeywords) {
this.cfgKeywords = cfgKeywords;
}
public String getAppName() {
return appName;
}
public void setAppName(String appName) {
this.appName = appName;
}
}

View File

@@ -23,6 +23,7 @@ public class AppIpCfg extends BaseCfg<AppIpCfg> {
private Integer ratelimit;
private String appCode;
private Integer specServiceId;
private String appName;
@Expose
@SerializedName("ipType")
protected Integer ipType;
@@ -230,5 +231,11 @@ public class AppIpCfg extends BaseCfg<AppIpCfg> {
public void setSpecServiceId(Integer specServiceId) {
this.specServiceId = specServiceId;
}
public String getAppName() {
return appName;
}
public void setAppName(String appName) {
this.appName = appName;
}
}