mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
>=逻辑和<=逻辑保持一致
This commit is contained in:
parent
4bf41c414b
commit
3d1bbbf235
@ -867,7 +867,7 @@ public class QueryWrapperAdapter<R extends QueryWrapperAdapter<R>> extends Query
|
||||
*/
|
||||
@Override
|
||||
public R ge(String column, Object value) {
|
||||
and(QueryMethods.column(column).ge_(value));
|
||||
and(QueryMethods.column(column).ge(value));
|
||||
return (R) this;
|
||||
}
|
||||
|
||||
@ -879,7 +879,7 @@ public class QueryWrapperAdapter<R extends QueryWrapperAdapter<R>> extends Query
|
||||
*/
|
||||
@Override
|
||||
public <T> R ge(LambdaGetter<T> column, Object value) {
|
||||
and(QueryMethods.column(column).ge_(value));
|
||||
and(QueryMethods.column(column).ge(value));
|
||||
return (R) this;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user