|
@@ -197,7 +197,9 @@ public class KfAppletMsgServiceImpl implements IKfAppletMsgService {
|
|
|
msgParamMap.put("text", textMap);
|
|
|
kfWxApiService.sendCustomMessageApi(gameId, msgParamMap);
|
|
|
//保存消息
|
|
|
- kfRoomMsgService.save(this.transform(openId, gameId, kfRoom, JsonUtil.toString(msgParamMap)));
|
|
|
+ Map<String, Object> kfRoomMsgMap = new HashMap<>(1);
|
|
|
+ kfRoomMsgMap.put("text", kfSystemReply.getSysReply());
|
|
|
+ kfRoomMsgService.save(this.transform(openId, gameId, kfRoom, JsonUtil.toString(kfRoomMsgMap)));
|
|
|
}
|
|
|
|
|
|
private boolean orderHandle(String orderId, Long gameId, KfAppletMsgDTO kfAppletMsgDTO, KfRoom kfRoom, KfRoomMsg kfRoomMsg) {
|