Commit e6e88ce2 by HlQ

[feat] 异常关注项目列表添加时间排序

1 parent 810b6536
......@@ -198,7 +198,8 @@ public class MallServiceImpl extends MPJBaseServiceImpl<MallMapper, Mall> implem
.eq(EventRecord::getAgentType, dto.getAgentType())
.in(CollUtil.isNotEmpty(dto.getEventUidList()), EventRecord::getEventUid, dto.getEventUidList())
.in(CollUtil.isNotEmpty(dto.getAccountUidList()), EventRecord::getAccountUid, dto.getAccountUidList())
.orderByAsc(EventRecord::getMallUid))
.orderByAsc(EventRecord::getMallUid)
.orderByDesc(EventRecord::getCreateTime))
.eq(EventRecord::getStatus, 0);
var eventRecordList = eventRecordService.selectJoinList(EventRecord.class, eventRecWrapper);
var mallUidList = eventRecordList.stream().map(EventRecord::getMallUid).toList();
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!