|
@@ -18,7 +18,7 @@ public class EnvBean {
|
|
private Long currentTime;
|
|
private Long currentTime;
|
|
|
|
|
|
@ApiModelProperty("黑名单资源文件下载地址")
|
|
@ApiModelProperty("黑名单资源文件下载地址")
|
|
- private List<String> denyList;
|
|
|
|
|
|
+ private String denyList;
|
|
|
|
|
|
public VersionBean getVersion() {
|
|
public VersionBean getVersion() {
|
|
return version;
|
|
return version;
|
|
@@ -44,13 +44,11 @@ public class EnvBean {
|
|
this.currentTime = currentTime;
|
|
this.currentTime = currentTime;
|
|
}
|
|
}
|
|
|
|
|
|
- public List<String> getDenyList() {
|
|
|
|
|
|
+ public String getDenyList() {
|
|
return denyList;
|
|
return denyList;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setDenyList(List<String> denyList) {
|
|
|
|
|
|
+ public void setDenyList(String denyList) {
|
|
this.denyList = denyList;
|
|
this.denyList = denyList;
|
|
}
|
|
}
|
|
-
|
|
|
|
-
|
|
|
|
}
|
|
}
|