From f624f64a22ff951eee58da559ee92b75964648f3 Mon Sep 17 00:00:00 2001 From: luozukai Date: Tue, 19 Feb 2019 16:02:30 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=AE=A1=E6=89=B9=E6=B5=81][=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0][=E6=B7=BB=E5=8A=A0=E5=90=88=E5=90=8C=E6=8F=90?= =?UTF-8?q?=E5=89=8D=E7=BB=88=E6=AD=A2=E5=AE=A1=E6=89=B9]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/iformall/service/impl/WxFlowServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java index 6ce7e1a8f..38df1fd55 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java @@ -494,7 +494,7 @@ public class WxFlowServiceImpl implements WxFlowService { String processInstanceId = (String)params.get("processInstanceId"); String remark = (String)params.get("remark"); Map mapInfo = taskService.getVariables(taskId); - Long businessId = (Long)mapInfo.get("businessId"); + Long businessId = Long.parseLong((String)mapInfo.get("businessId")); Integer flowType = (Integer)mapInfo.get("flowType"); MallUserInfo starter = (MallUserInfo)mapInfo.get("starter"); @@ -552,7 +552,7 @@ public class WxFlowServiceImpl implements WxFlowService { String remark = (String)params.get("remark"); Map mapInfo = taskService.getVariables(taskId); - Long businessId = (Long)mapInfo.get("businessId"); + Long businessId = Long.parseLong((String)mapInfo.get("businessId")); Integer flowType = (Integer)mapInfo.get("flowType"); String taskName;