修复where错误

This commit is contained in:
zhouhao
2020-04-07 21:09:24 +08:00
parent fd378f1e69
commit 4cf4365960

View File

@@ -163,7 +163,7 @@ public class QueryParamEntity extends QueryParam {
*/
public void setWhere(String where) {
this.where = where;
setTerms(TermExpressionParser.parse(termExpression));
setTerms(TermExpressionParser.parse(where));
}
@Override