region,service字典增加字段

This commit is contained in:
wangxin
2018-08-20 09:24:44 +08:00
parent 32b229e233
commit 5fa8ad485c
6 changed files with 68 additions and 2 deletions

View File

@@ -21,7 +21,49 @@ public class FunctionRegionDict extends BaseCfg<FunctionRegionDict> {
private String configExprType;
private String configMatchMethod;
private String configServiceType;
private String configIpPortShow;
private String configIpType;
private String configIpPattern;
private String configPortPattern;
private String configDirection;
private String configProtocol;
public String getConfigIpPortShow() {
return configIpPortShow;
}
public void setConfigIpPortShow(String configIpPortShow) {
this.configIpPortShow = configIpPortShow;
}
public String getConfigIpType() {
return configIpType;
}
public void setConfigIpType(String configIpType) {
this.configIpType = configIpType;
}
public String getConfigIpPattern() {
return configIpPattern;
}
public void setConfigIpPattern(String configIpPattern) {
this.configIpPattern = configIpPattern;
}
public String getConfigPortPattern() {
return configPortPattern;
}
public void setConfigPortPattern(String configPortPattern) {
this.configPortPattern = configPortPattern;
}
public String getConfigDirection() {
return configDirection;
}
public void setConfigDirection(String configDirection) {
this.configDirection = configDirection;
}
public String getConfigProtocol() {
return configProtocol;
}
public void setConfigProtocol(String configProtocol) {
this.configProtocol = configProtocol;
}
public String getConfigServiceType() {
return configServiceType;
}