|
@ -2484,13 +2484,13 @@ public class ResiTopicServiceImpl extends BaseServiceImpl<ResiTopicDao, ResiTopi |
|
|
public void sendTopicPointEventByEventType(TopicEventFormDTO param) { |
|
|
public void sendTopicPointEventByEventType(TopicEventFormDTO param) { |
|
|
ResiTopicEntity topic = baseDao.selectById(param.getTopicId()); |
|
|
ResiTopicEntity topic = baseDao.selectById(param.getTopicId()); |
|
|
if(null == topic){ |
|
|
if(null == topic){ |
|
|
log.error("com.epmet.modules.topic.service.impl.ResiTopicServiceImpl.sendTopicPointEventByEventType,根据话题Id没有找到对应的话题信息,参数:{}",JSON.toJSONString(param |
|
|
log.warn("com.epmet.modules.topic.service.impl.ResiTopicServiceImpl.sendTopicPointEventByEventType,根据话题Id没有找到对应的话题信息,参数:{}",JSON.toJSONString(param |
|
|
)); |
|
|
)); |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
ResiGroupInfoRedisDTO group = resiGroupRedis.get(topic.getGroupId()); |
|
|
ResiGroupInfoRedisDTO group = resiGroupRedis.get(topic.getGroupId()); |
|
|
if(null == group){ |
|
|
if(null == group){ |
|
|
log.error("com.epmet.modules.topic.service.impl.ResiTopicServiceImpl.sendTopicPointEventByEventType,根据组Id没有找到对应的小组信息,组Id:{}",topic.getGroupId()); |
|
|
log.warn("com.epmet.modules.topic.service.impl.ResiTopicServiceImpl.sendTopicPointEventByEventType,根据组Id没有找到对应的小组信息,组Id:{}",topic.getGroupId()); |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|