增加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

@@ -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;
}
}