diff --git a/src/weaver/formmode/recruit/departmentscreening/BatchAddDeptScreeningModeExpand.java b/src/weaver/formmode/recruit/departmentscreening/BatchAddDeptScreeningModeExpand.java index 8a4fdeb..68d66e4 100644 --- a/src/weaver/formmode/recruit/departmentscreening/BatchAddDeptScreeningModeExpand.java +++ b/src/weaver/formmode/recruit/departmentscreening/BatchAddDeptScreeningModeExpand.java @@ -46,8 +46,8 @@ public class BatchAddDeptScreeningModeExpand extends AbstractModeExpandJavaCodeN } // 部门筛选ID mainDataMap.put("bmsxid", requestInfo.getRequestid()); - // 结果 - mainDataMap.put("jg", "2"); + // 状态 + mainDataMap.put("zt", "0"); // 填充建模数据基本信息 mainDataMap.put("formmodeid", formModeId); mainDataMap.put("modedatacreater", requestInfo.getCreatorid()); @@ -76,7 +76,7 @@ public class BatchAddDeptScreeningModeExpand extends AbstractModeExpandJavaCodeN List> paramList = new ArrayList<>(); buildParamList(detailDataMap, paramList); if (CollectionUtils.isNotEmpty(paramList)) { - String insertSql = "insert into " + MODE_TABLE_NAME + " (modeuuid, modedatacreatertype, formmodeid, modedatacreater, modedatacreatedate, modedatacreatetime, modedatamodifier, modedatamodifydatetime, bmsxid, ypz, ypzw, tdsj, jg, pcid, fkr) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; + String insertSql = "insert into " + MODE_TABLE_NAME + " (modeuuid, modedatacreatertype, formmodeid, modedatacreater, modedatacreatedate, modedatacreatetime, modedatamodifier, modedatamodifydatetime, bmsxid, ypz, ypzw, tdsj, zt, pcid, fkr) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; for (List objects : paramList) { String uuid = UUID.randomUUID().toString(); objects.add(0, uuid); @@ -120,7 +120,7 @@ public class BatchAddDeptScreeningModeExpand extends AbstractModeExpandJavaCodeN // 投递时间 param.add(map.get("tdsj")); // 状态 - param.add(map.get("jg")); + param.add(map.get("zt")); // 批次ID param.add(map.get("pcid")); // 反馈人 diff --git a/src/weaver/formmode/recruit/departmentscreening/SingleAddDeptScreeningModeExpand.java b/src/weaver/formmode/recruit/departmentscreening/SingleAddDeptScreeningModeExpand.java index f087681..8552b1c 100644 --- a/src/weaver/formmode/recruit/departmentscreening/SingleAddDeptScreeningModeExpand.java +++ b/src/weaver/formmode/recruit/departmentscreening/SingleAddDeptScreeningModeExpand.java @@ -51,8 +51,8 @@ public class SingleAddDeptScreeningModeExpand extends AbstractModeExpandJavaCode // 部门筛选ID dataMap.put("bmsxid", requestInfo.getRequestid()); - // 结果 - dataMap.put("jg", "2"); + // 状态 + dataMap.put("zt", "0"); // 填充建模数据基本信息 dataMap.put("formmodeid", formModeId); dataMap.put("modedatacreater", requestInfo.getCreatorid()); @@ -67,7 +67,7 @@ public class SingleAddDeptScreeningModeExpand extends AbstractModeExpandJavaCode List> paramList = new ArrayList<>(); buildParamList(dataMap, paramList); if (CollectionUtils.isNotEmpty(paramList)) { - String insertSql = "insert into " + MODE_TABLE_NAME + " (modeuuid, modedatacreatertype, formmodeid, modedatacreater, modedatacreatedate, modedatacreatetime, modedatamodifier, modedatamodifydatetime, bmsxid, ypz, ypzw, tdsj, jg, pcid, fkr) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; + String insertSql = "insert into " + MODE_TABLE_NAME + " (modeuuid, modedatacreatertype, formmodeid, modedatacreater, modedatacreatedate, modedatacreatetime, modedatamodifier, modedatamodifydatetime, bmsxid, ypz, ypzw, tdsj, zt, pcid, fkr) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; for (List objects : paramList) { String uuid = UUID.randomUUID().toString(); objects.add(0, uuid); @@ -110,7 +110,7 @@ public class SingleAddDeptScreeningModeExpand extends AbstractModeExpandJavaCode // 投递时间 param.add(map.get("tdsj")); // 状态 - param.add(map.get("jg")); + param.add(map.get("zt")); // 批次ID param.add(map.get("pcid")); // 反馈人