From d83c08eac5b688330a971159c6c87302dc8ca374 Mon Sep 17 00:00:00 2001 From: dxfeng Date: Tue, 19 Mar 2024 09:24:29 +0800 Subject: [PATCH] =?UTF-8?q?QC:2884029=20=E3=80=90=E4=BC=98=E8=80=90?= =?UTF-8?q?=E7=89=B9=E3=80=91=E6=8B=9B=E8=81=98=E9=9C=80=E6=B1=82=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E5=A2=9E=E5=8A=A0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../interfaces/recruit/action/RecruitFlowToModeAction.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/weaver/interfaces/recruit/action/RecruitFlowToModeAction.java b/src/weaver/interfaces/recruit/action/RecruitFlowToModeAction.java index 9021abb..f6aa8db 100644 --- a/src/weaver/interfaces/recruit/action/RecruitFlowToModeAction.java +++ b/src/weaver/interfaces/recruit/action/RecruitFlowToModeAction.java @@ -85,6 +85,7 @@ public class RecruitFlowToModeAction implements Action { for (Cell cell : cells) { detailMap.put(cell.getName(), RecruitModeUtil.parseBlankToNull(cell.getValue())); } + detailMap.put("detailId", row.getId()); insertList.add(detailMap); } @@ -93,8 +94,8 @@ public class RecruitFlowToModeAction implements Action { // 插入建模表 RecordSetTrans rst = new RecordSetTrans(); rst.setAutoCommit(false); - String sql = " insert into " + MODE_TABLE_NAME + "(modeuuid,modedatacreatertype,formmodeid,modedatacreater,modedatacreatedate,modedatacreatetime,modedatamodifier,modedatamodifydatetime,xqsplc,xqzt,sqr,sqsj,sqbm,nd,spfs,xqlx,bz,xqmc,zpyy,zpxqfzr,szfb,szbm,gw,gwzz,rzyq,zwxz,gzdd,gznx,zdxlyq,zprs,qwdgsj)" + - " values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; + String sql = " insert into " + MODE_TABLE_NAME + "(modeuuid,modedatacreatertype,formmodeid,modedatacreater,modedatacreatedate,modedatacreatetime,modedatamodifier,modedatamodifydatetime,xqsplc,xqzt,sqr,sqsj,sqbm,nd,spfs,xqlx,bz,xqmc,zpyy,zpxqfzr,szfb,szbm,gw,gwzz,rzyq,zwxz,gzdd,gznx,zdxlyq,zprs,qwdgsj,xqlcmxid)" + + " values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; try { for (Map map : insertList) { @@ -198,6 +199,8 @@ public class RecruitFlowToModeAction implements Action { param.add(map.get("zprs")); // 期望到岗时间 param.add(map.get("qwdgsj")); + // 需求流程明细ID + param.add(map.get("detailId")); return param; }