|
@@ -50,7 +50,8 @@ public class MhPostInspectServiceImpl extends AbstractCrudService<MhPostInspectM
|
|
|
LambdaQueryWrapper<MhPostInspect> queryWrapper = Wrappers.lambdaQuery();
|
|
|
queryWrapper.select(MhPostInspect::getId, MhPostInspect::getInspectStatus, MhPostInspect::getInspectTime,
|
|
|
MhPostInspect::getSpentTime, MhPostInspect::getReplyTime)
|
|
|
- .eq(MhPostInspect::getCompanyId, companyId);
|
|
|
+ .eq(MhPostInspect::getCompanyId, companyId)
|
|
|
+ .orderByDesc(MhPostInspect::getId);
|
|
|
page = this.page(page, queryWrapper);
|
|
|
if (page.getTotal() > 0) {
|
|
|
for (int i = 0; i < page.getRecords().size(); i++) {
|