部门筛选反馈数据调整

This commit is contained in:
dxfeng 2023-09-21 15:26:35 +08:00
parent 16bbd4478c
commit 4d670be00c
2 changed files with 8 additions and 8 deletions

View File

@ -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<List<Object>> 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<Object> 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"));
// 反馈人

View File

@ -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<List<Object>> 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<Object> 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"));
// 反馈人