|
@@ -130,7 +130,7 @@ public class ReportReceiveServiceImpl implements ReportReceiveService {
|
|
|
return Collections.emptyList();
|
|
|
}
|
|
|
return ReportReceiveConvert.INSTANCE.convertList(reportReceiveMapper.selectList(new LambdaQueryWrapperX<ReportReceiveDO>()
|
|
|
- .eq(ReportReceiveDO::getDeleted,0)
|
|
|
+ .eq(ReportReceiveDO::getDeleted,0).orderByDesc(ReportReceiveDO::getUpdateTime)
|
|
|
.eqIfPresent(ReportReceiveDO::getReceiveUserId, userId)));
|
|
|
}
|
|
|
|