From b65c4cdd68b72771634fcfd52709edfd77d7abc6 Mon Sep 17 00:00:00 2001
From: 陈昶聿 <chychen@nbjetron.com>
Date: 星期五, 07 八月 2026 17:47:43 +0800
Subject: [PATCH] 【景宁】发送方式改执行方式

---
 smartor/src/main/java/com/smartor/service/impl/PatMedInhospServiceImpl.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/smartor/src/main/java/com/smartor/service/impl/PatMedInhospServiceImpl.java b/smartor/src/main/java/com/smartor/service/impl/PatMedInhospServiceImpl.java
index 4350848..2a20597 100644
--- a/smartor/src/main/java/com/smartor/service/impl/PatMedInhospServiceImpl.java
+++ b/smartor/src/main/java/com/smartor/service/impl/PatMedInhospServiceImpl.java
@@ -432,19 +432,19 @@
                         Integer type = 1;
                         if (StringUtils.isNotEmpty(deptCodes)) {
                             type = 1;
-                            deptCodeList = Arrays.asList(deptCodes.split(","));
+                            deptCodeList = new ArrayList<>(Arrays.asList(deptCodes.split(",")));
                         }
                         if(StringUtils.isNotEmpty(wardCodes)) {
                             type = 2;
-                            wardCodeList = Arrays.asList(wardCodes.split(","));
+                            wardCodeList = new ArrayList<>(Arrays.asList(wardCodes.split(",")));
                         }
                         if(StringUtils.isNotEmpty(icd10Codes)) {
                             type = 3;
-                            icd10CodeList = Arrays.asList(icd10Codes.split(","));
+                            icd10CodeList = new ArrayList<>(Arrays.asList(icd10Codes.split(",")));
                         }
                         if (StringUtils.isNotEmpty(opLevelCodes)) {
                             type = 6;
-                            opLevelCodeList = Arrays.asList(opLevelCodes.split(","));
+                            opLevelCodeList = new ArrayList<>(Arrays.asList(opLevelCodes.split(",")));
                         }
                         //闈炴墜鏈鐞嗘柟寮�
                         if(type != 6){

--
Gitblit v1.9.3