Commit 49f1f220 authored by 刘基明's avatar 刘基明

消息通知添加话题信息 fix

parent 37586eff
...@@ -81,11 +81,10 @@ public class TopicService { ...@@ -81,11 +81,10 @@ public class TopicService {
.eq(TopicEntity::getDeleteTag, StatusEnum.FALSE)); .eq(TopicEntity::getDeleteTag, StatusEnum.FALSE));
} }
// 根据话题id查询title,(包括已删除)
public String queryTitleById(String topicId) { public String queryTitleById(String topicId) {
TopicEntity topicEntity = topicMapper.selectOne(new LambdaQueryWrapper<TopicEntity>() TopicEntity topicEntity = topicMapper.selectOne(new LambdaQueryWrapper<TopicEntity>()
.eq(TopicEntity::getTopicId, topicId) .eq(TopicEntity::getTopicId, topicId));
.eq(TopicEntity::getIsConceal, StatusEnum.FALSE)
.eq(TopicEntity::getDeleteTag, StatusEnum.FALSE));
return topicEntity!=null?topicEntity.getTopicTitle():null; return topicEntity!=null?topicEntity.getTopicTitle():null;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment