Commit 9d8c3302 by WeiCong

修复安全框架漏洞,对于查询到单条寄单类型数据,然后点击修改被拦截得问题

parent f4908714
......@@ -270,6 +270,9 @@ public class DataSecurityUtil {
}
List<String> lst = Arrays.asList(pars);
String md5 = String.join(",", lst);
if(md5.startsWith(",")){
md5=md5.substring(1,md5.length());
}
if(md5.endsWith(",")){
md5=md5.substring(0,md5.length()-1);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment