|
@@ -74,6 +74,7 @@ public class PtCardtypeServiceImpl implements IPtCardtypeService {
|
|
|
@Override
|
|
@Override
|
|
|
public List<PtCardtypeVo> queryList(PtCardtypeBo bo) {
|
|
public List<PtCardtypeVo> queryList(PtCardtypeBo bo) {
|
|
|
LambdaQueryWrapper<PtCardtype> lqw = buildQueryWrapper(bo);
|
|
LambdaQueryWrapper<PtCardtype> lqw = buildQueryWrapper(bo);
|
|
|
|
|
+ lqw.orderByAsc(PtCardtype::getCode);
|
|
|
return baseMapper.selectVoList(lqw);
|
|
return baseMapper.selectVoList(lqw);
|
|
|
}
|
|
}
|
|
|
|
|
|