REQ-2595-待办数量查询,对应分类枚举为空,补充为空值

This commit is contained in:
yangqicheng 2024-11-07 09:34:27 +08:00
parent c0eb93b8fb
commit 950a41932a

View File

@ -190,6 +190,9 @@ public class TodoSimpleQueryService {
.build());
}
}
for (BizCategoryEnum bc : BizCategoryEnum.values()) {
resultMap.computeIfAbsent(bc, k -> new PendingMessageCountDTO());
}
return resultMap;
}