Caratacus / Crown

Based on SpringBoot2, Crown builds a rapidly developed web application scaffolding.
http://crown.baomidou.com
MIT License
168 stars 76 forks source link

BaseServiceImpl建议添加获取QueryWrapper<T>方法 #4

Closed ReevesZheng closed 5 years ago

ReevesZheng commented 5 years ago
public QueryWrapper<T> getQueryWrapper(String... columns){
    QueryWrapper<T> queryWrapper = Wrappers.query();
    queryWrapper.select(columns);
    return queryWrapper;
}