update 查询嘉宾上传文件增加排序

This commit is contained in:
lijiarao
2023-07-27 18:26:28 +08:00
parent ed93a62592
commit 9a49e9ec4a
@@ -1840,6 +1840,7 @@ public class PayMeetingSituationServiceImpl extends ServiceImpl<PayMeetingSituat
LambdaQueryWrapper<PayMeetingGuestsFile> wrapper = new LambdaQueryWrapper<>();
wrapper.eq(PayMeetingGuestsFile::getMeetingId,meetingId);
wrapper.eq(PayMeetingGuestsFile::getContactsId,sysUserId);
wrapper.orderByDesc(PayMeetingGuestsFile::getCreateTime);
return meetingGuestsFileMapper.selectList(wrapper);
}