"vscode:/vscode.git/clone" did not exist on "00cdbb49f0568fc184406b55c661fd4ce6dbda2a"
Commit d0ffe1a8 authored by dqjdda's avatar dqjdda
Browse files

Merge branch 'master' of gitee.com:elunez/eladmin

parents 90ea8190 ee8220c1
......@@ -41,7 +41,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;
......
Supports Markdown
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