Commit 60106249 by yukang

合同管理

parent b4280439
...@@ -280,11 +280,13 @@ public class HGCWTools { ...@@ -280,11 +280,13 @@ public class HGCWTools {
public static void batchUpdate(List<Map> rows, Long id) { public static void batchUpdate(List<Map> rows, Long id) {
AssertUtils.isNull(id, "业务ID不能为空!"); AssertUtils.isNull(id, "业务ID不能为空!");
String[] docIds = rows.stream().map(row -> row.get("docId").toString()).toArray(String[]::new); String[] docIds = rows.stream().map(row -> row.get("docId").toString()).toArray(String[]::new);
if (docIds.length > 0) {
DaoUtils.update("HGCW999.batchUpdate", new HashMap<String,Object>(){ DaoUtils.update("HGCW999.batchUpdate", new HashMap<String,Object>(){
{put("docIds",docIds);} {put("docIds",docIds);}
{put("matId",id);} {put("matId",id);}
}); });
} }
}
public static List<HGCW999> queryByBiz(Long matId, String bizType) { public static List<HGCW999> queryByBiz(Long matId, String bizType) {
AssertUtils.isNull(matId, "业务ID不能为空!"); AssertUtils.isNull(matId, "业务ID不能为空!");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment