mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
!368 feat: QueryModel #select()方法 添加 Iterable<QueryColumn>类型参数支持
Merge pull request !368 from 关梦园/main
This commit is contained in:
commit
9c8020ac8b
@ -71,6 +71,11 @@ public abstract class QueryModel<T extends QueryModel<T>> {
|
||||
return (T) this;
|
||||
}
|
||||
|
||||
public T select(Iterable<QueryColumn> queryColumns) {
|
||||
queryWrapper().select(queryColumns);
|
||||
return (T) this;
|
||||
}
|
||||
|
||||
public <E> T select(LambdaGetter<E>... columns) {
|
||||
queryWrapper().select(columns);
|
||||
return (T) this;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user