Merge branch 'uat_partyMemberEvent' into uat_code

This commit is contained in:
517612449@qq.com
2022-07-15 14:59:22 +08:00

View File

@ -67,7 +67,7 @@ public class EventContactSuggestionServiceImpl extends ServiceImpl<EventContactS
query.lt(EventContactSuggestion::getCreateTime, inVO.getEndTime()); query.lt(EventContactSuggestion::getCreateTime, inVO.getEndTime());
} }
if (StrUtil.isNotBlank(inVO.getType())) { if (StrUtil.isNotBlank(inVO.getType())) {
query.eq(EventContactSuggestion::getSuggestionType, inVO.getType()); query.eq(EventContactSuggestion::getSuggestionType, inVO.getSuggestionType());
} }
query.orderByDesc(EventContactSuggestion::getCreateTime); query.orderByDesc(EventContactSuggestion::getCreateTime);
return this.page(page, query); return this.page(page, query);