generated from dxfeng/secondev-chapanda-feishu
部门筛选反馈数据调整
This commit is contained in:
parent
16bbd4478c
commit
4d670be00c
|
|
@ -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"));
|
||||
// 反馈人
|
||||
|
|
|
|||
|
|
@ -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"));
|
||||
// 反馈人
|
||||
|
|
|
|||
Loading…
Reference in New Issue