//http url

//dns
//mail address
//mail advanced
//https monitor
//https block
//https redirect
//https replace
//https whitelist
#以上业务的配置批量失效功能提交
This commit is contained in:
段冬梅
2019-02-28 17:55:56 +08:00
parent d8b05f9431
commit 6b37a95ee2
4 changed files with 35 additions and 13 deletions

View File

@@ -3240,6 +3240,15 @@ public class BaseController {
}
}
}
//批量审核通过时如果没有携带isValid检索条件返回界面需要将isValid置为null
if(!StringUtil.isEmpty(entity)) {
BaseCfg base=(BaseCfg)entity ;
if(!StringUtil.isEmpty(base.getSeltype()) && !base.getSeltype().equals("isValid")) {
base.setIsValid(null);
BeanUtils.copyProperties(base, entity);
}
}
}