mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 17:18:24 +08:00
fix: 方法指向错误。
This commit is contained in:
parent
06a68b19c4
commit
3c6a3ca6a6
@ -209,14 +209,14 @@ public class WhereBuilder<R extends QueryModel<R>> implements Conditional<R> {
|
|||||||
* 大于等于 {@code >=}
|
* 大于等于 {@code >=}
|
||||||
*/
|
*/
|
||||||
public <T> R ge(LambdaGetter<T> value) {
|
public <T> R ge(LambdaGetter<T> value) {
|
||||||
return eq(LambdaUtil.getQueryColumn(value), true);
|
return ge(LambdaUtil.getQueryColumn(value), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 大于等于 {@code >=}
|
* 大于等于 {@code >=}
|
||||||
*/
|
*/
|
||||||
public <T> R ge(LambdaGetter<T> value, boolean isEffective) {
|
public <T> R ge(LambdaGetter<T> value, boolean isEffective) {
|
||||||
return eq(LambdaUtil.getQueryColumn(value), isEffective);
|
return ge(LambdaUtil.getQueryColumn(value), isEffective);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user