提交 3a6a7d9d 编写于 作者: W wei.zhang

修复

url传值时,比如:/api/creditInfo?enterpriseName=&startTime=&endTime=&page=0&size=10
后台sql语句 有enterpriseName='' and startTime='' and endTime=''
导致查不到数据
上级 1b574b59
......@@ -40,7 +40,7 @@ public class QueryHelp {
String attributeName = isBlank(propName) ? field.getName() : propName;
Class<?> fieldType = field.getType();
Object val = field.get(query);
if (ObjectUtil.isNull(val)) {
if (ObjectUtil.isNull(val) || "".equals(val)) {
continue;
}
Join join = null;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册