mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 09:08:24 +08:00
feat: QueryWrapperAdapter add groupBy lambda
This commit is contained in:
parent
c28d094767
commit
290335f958
@ -536,6 +536,18 @@ public class QueryWrapperAdapter<R extends QueryWrapperAdapter<R>> extends Query
|
||||
return (R) this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public <T> R groupBy(LambdaGetter<T> column) {
|
||||
super.groupBy(column);
|
||||
return (R) this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public <T> R groupBy(LambdaGetter<T>... columns) {
|
||||
super.groupBy(columns);
|
||||
return (R) this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public R having(QueryCondition queryCondition) {
|
||||
super.having(queryCondition);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user