|
|
|
@ -635,6 +635,10 @@ public class TopicDraftServiceImpl extends BaseServiceImpl<TopicDraftDao, TopicD |
|
|
|
result = baseDao.selectTopicDraftByGroup(formDTO.getGroupId(), formDTO.getStatus()); |
|
|
|
} |
|
|
|
result.forEach(item -> { |
|
|
|
List<TopicDraftAttachmentDTO> list = topicDraftAttachmentService.getFileList(item.getTopicDraftId(), TopicConstant.VOICE); |
|
|
|
if (CollectionUtils.isNotEmpty(list) && StringUtils.isBlank(item.getTopicContent())) { |
|
|
|
item.setTopicContent("语音话题"); |
|
|
|
} |
|
|
|
ResiGroupMemberInfoRedisDTO memberRedis = |
|
|
|
resiGroupMemberRedis.get(formDTO.getGroupId(),item.getUserName()); |
|
|
|
if(null != memberRedis && StringUtils.isNotBlank(memberRedis.getUserId())){ |
|
|
|
|