Commit e92d5477 authored by jiaorz's avatar jiaorz

后台添加IM接口

parent 05c5008a
...@@ -350,7 +350,7 @@ public class MsgBiz { ...@@ -350,7 +350,7 @@ public class MsgBiz {
log.info("后台添加消息: param = {}", param); log.info("后台添加消息: param = {}", param);
Msg entity = Msg.build(param.getUserId(), param.getNickname(), param); Msg entity = Msg.build(param.getUserId(), param.getNickname(), param);
// 保存商务圈消息 // 保存商务圈消息
Msg msg = mongoTemplate.save(entity); Msg msg = mongoTemplate.save(entity, "s_msg");
if(msg == null) { if(msg == null) {
return null; return 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