From 0cf9165ac69bb33e32764313f897f63f01f17d0a Mon Sep 17 00:00:00 2001 From: dxfeng Date: Mon, 29 Jan 2024 18:31:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=81=E7=A8=8B=E9=98=B6=E6=AE=B5=E5=88=9D?= =?UTF-8?q?=E5=A7=8B=E5=8C=96BUG=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../recruit/modeexpand/process/StageDataInsert.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/weaver/formmode/recruit/modeexpand/process/StageDataInsert.java b/src/weaver/formmode/recruit/modeexpand/process/StageDataInsert.java index 51b78ed..f8e17b8 100644 --- a/src/weaver/formmode/recruit/modeexpand/process/StageDataInsert.java +++ b/src/weaver/formmode/recruit/modeexpand/process/StageDataInsert.java @@ -37,14 +37,14 @@ public class StageDataInsert { // modedatacreatetime paramsList.add(dateSplit[1]); // modedatamodifier - paramsList.add(null); + //paramsList.add(null); // modedatamodifydatetime - paramsList.add(null); + //paramsList.add(null); // modedatacreatertype paramsList.add("0"); String processIdsStr = StringUtils.join(Arrays.asList(processIds), ","); - String insertSql = "insert into uf_jcl_zpjdsz (modeuuid, modedatacreater, modedatacreatedate, modedatacreatetime, modedatamodifier, modedatamodifydatetime, modedatacreatertype, formmodeid, jdmc, jdms, jdlx, hj, sfqy, zssx, zpjd, " + relateField + ") values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; + String insertSql = "insert into uf_jcl_zpjdsz (modeuuid, modedatacreater, modedatacreatedate, modedatacreatetime, modedatacreatertype, formmodeid, jdmc, jdms, jdlx, hj, sfqy, zssx, zpjd, " + relateField + ") values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; if (StringUtils.isNotBlank(processIdsStr)) { insertMainTableData(creator, billId, processIdsStr, insertSql, paramsList); }