From 4f4951060a8fabeee2323b8ec35def5416a9d89d Mon Sep 17 00:00:00 2001 From: shiyang Date: Thu, 30 Sep 2021 17:11:10 +0800 Subject: [PATCH] =?UTF-8?q?=E7=8E=AF=E4=BF=A1=E7=BE=A4=E7=BB=84=E5=90=8D?= =?UTF-8?q?=E7=A7=B0=E6=9B=B4=E6=94=B9=E4=B8=BA=E5=A7=93=E5=90=8D=E4=B8=B2?= =?UTF-8?q?-=E7=94=A8=E4=BA=8EPC=E7=AB=AF=E9=97=AE=E8=AF=8A=E5=B1=95?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/lyms/talkonlineweb/controller/TkRecordController.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/TkRecordController.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/TkRecordController.java index 9fea10d..6069f26 100644 --- a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/TkRecordController.java +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/TkRecordController.java @@ -85,7 +85,11 @@ public class TkRecordController { log.info("rJson:" + rJson); group.setHxgroupid(rJson.getJSONObject("data").getString("groupid")); group.setDescription(group.getFromp() + "," + group.getTarget()); - group.setGroupname(group.getFromp() + "," + group.getTarget()); +// group.setGroupname(group.getFromp() + "," + group.getTarget()); + + //环信群组名称更改为姓名串-用于PC端问诊展示 + group.setGroupname(patient.getPname() + "," + doctor.getDname()); + lymsChatgroupService.saveOrUpdate(group); lymsTkrecordService.save(tkrecord); baseResponse.setObject(group); -- 1.8.3.1