|
@@ -417,6 +417,7 @@ public class QwMsgServiceImpl extends ServiceImpl<QwMsgMapper, QwMsg> implements
|
|
|
listVO.setId(qwMsg.getMsgId().toString());
|
|
|
listVO.setContent(qwMsg.getContent());
|
|
|
listVO.setToContactId(String.valueOf(param.getSessionId()));
|
|
|
+ listVO.setAppKey(qwUser.getAppKey());
|
|
|
return R.ok().put("data", listVO);
|
|
|
}
|
|
|
|
|
@@ -547,6 +548,7 @@ public class QwMsgServiceImpl extends ServiceImpl<QwMsgMapper, QwMsg> implements
|
|
|
listVO.setId(record.getMsgId().toString());
|
|
|
listVO.setContent(record.getContent());
|
|
|
listVO.setToContactId(param.getConversationId());
|
|
|
+ listVO.setAppKey(user.getAppKey());
|
|
|
qwMessageVOS.add(listVO);
|
|
|
}
|
|
|
return qwMessageVOS;
|