Commit 1d648b2e authored by Quxl's avatar Quxl

x

parent f39fbe65
......@@ -39,7 +39,7 @@ public class SqlWhere {
return this;
}
public SqlWhere gtq(String name, Object obj) {
public SqlWhere gte(String name, Object obj) {
if(StringUtil.isNotBlank(obj)) {
this.strList.add(name + " >= ?");
this.objList.add(obj);
......@@ -47,7 +47,7 @@ public class SqlWhere {
return this;
}
public SqlWhere ltq(String name, Object obj) {
public SqlWhere lte(String name, Object obj) {
if(StringUtil.isNotBlank(obj)) {
this.strList.add(name + " <= ?");
this.objList.add(obj);
......
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