mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 17:18:24 +08:00
feat: QueryModel #select()方法 添加 Iterable<QueryColumn> queryColumns
This commit is contained in:
parent
ed5a2fd398
commit
fadc1a08ba
@ -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