From 7ba25ec9bb6460d9eb9cd05dde0dd3b12db837b8 Mon Sep 17 00:00:00 2001 From: luozukai Date: Wed, 20 Feb 2019 19:00:31 +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 28798c8ec..2e1b3e9a6 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java @@ -552,7 +552,7 @@ public class WxFlowServiceImpl implements WxFlowService { wxFlowRecord.setTaskName(taskName); wxFlowRecordService.saveOrUpdate(wxFlowRecord); //修改记录表当前状态 - wxFlowRecordMapper.updateCurrStatus(new WxFlowRecord(processInstanceId,EnumFlowRecordStatus.REJECT.getCode())); + wxFlowRecordMapper.updateCurrStatus(new WxFlowRecord(processInstanceId,EnumRentContractAppStatus.REJECT.getCode())); // 给发起人发送驳回消息 Map msgReplaceMap = new HashedMap(); @@ -607,7 +607,7 @@ public class WxFlowServiceImpl implements WxFlowService { wxFlowRecord.setTaskName(taskName); wxFlowRecordService.saveOrUpdate(wxFlowRecord); //修改记录表当前状态 - wxFlowRecordMapper.updateCurrStatus(new WxFlowRecord(processInstanceId,EnumFlowRecordStatus.SETBACK.getCode())); + wxFlowRecordMapper.updateCurrStatus(new WxFlowRecord(processInstanceId,EnumRentContractAppStatus.SETBACK.getCode())); return new ResultData(); }