|
@@ -46,7 +46,7 @@ public class MonthlyParkingRegistrationServiceImpl extends ServiceImpl<MonthlyPa
|
|
|
// 查询数据
|
|
|
Page<MonthlyParkingRegistration> dictItemPage = this.page(
|
|
|
new Page<>(pageNum, pageSize),
|
|
|
- new LambdaQueryWrapper<MonthlyParkingRegistration>()
|
|
|
+ new LambdaQueryWrapper<MonthlyParkingRegistration>().orderByDesc(MonthlyParkingRegistration::getCreateTime)
|
|
|
//.like(StrUtil.isNotBlank(keywords), MonthlyParkingRegistration::getCategoryName, keywords)
|
|
|
);
|
|
|
|