1、修改文件上传接口的请求头中日期格式的处理;

2、修改http配置表单的区域管控加载,以及提交验证。
This commit is contained in:
zhangwei
2018-05-30 11:40:55 +08:00
parent e81a600788
commit 8fb868ecca
10 changed files with 121 additions and 87 deletions

View File

@@ -39,7 +39,7 @@ public class ToMaatResult implements Serializable{
private String accessUrl;
private Long rawLen;
private String digest;
private MaatCfg configCompileList;
private List configCompileList;
public String getSourceName() {
return sourceName;
}
@@ -76,10 +76,10 @@ public class ToMaatResult implements Serializable{
public void setDigest(String digest) {
this.digest = digest;
}
public MaatCfg getConfigCompileList() {
public List getConfigCompileList() {
return configCompileList;
}
public void setConfigCompileList(MaatCfg configCompileList) {
public void setConfigCompileList(List configCompileList) {
this.configCompileList = configCompileList;
}