From a73ecb930ab5fa4c276f5e687e04875240e467d8 Mon Sep 17 00:00:00 2001 From: yuxc <yuxc@vci-tech.com> Date: 星期一, 22 四月 2024 15:44:39 +0800 Subject: [PATCH] 1、增加jar包下载 --- Source/platformProject/vci-platform-web/src/main/java/com/vci/web/other/WorkFlowEndedNotice.java | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/other/WorkFlowEndedNotice.java b/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/other/WorkFlowEndedNotice.java index 2d038a1..9937409 100644 --- a/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/other/WorkFlowEndedNotice.java +++ b/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/other/WorkFlowEndedNotice.java @@ -46,7 +46,7 @@ String sql = "SELECT T_OID,T_BTWNAME FROM PLATFORMLT_INPUT WHERE F_OID = '" + wfOid + "'"; ClientBusinessObjectOperation operation = new ClientBusinessObjectOperation(); - List<ClientBusinessObject> queryResult = boService.queryBySql(sql, new HashMap<>()); + List<com.vci.client.bof.ClientBusinessObject> queryResult = boService.queryBySql(sql, new HashMap<>()); if (queryResult.size() == 0) { logger.info("娌℃湁鎵惧埌涓氬姟鏁版嵁"); return; @@ -58,15 +58,15 @@ " where wp.OID = '" + oid + "'"; Map<String, String> conditionMap = new HashMap<>(); conditionMap.put("oid", oid); - List<ClientBusinessObject> codeResult = boService.queryCBO(btmName, conditionMap); + List<com.vci.client.bof.ClientBusinessObject> codeResult = boService.queryCBO(btmName, conditionMap); conditionMap.clear(); conditionMap.put("createCodeOid", codeResult.get(0).getAttributeValue("oid")); - List<ClientBusinessObject> allCodeList = boService.queryCBO("codeAllCode", conditionMap); + List<com.vci.client.bof.ClientBusinessObject> allCodeList = boService.queryCBO("codeAllCode", conditionMap); if (allCodeList.size() == 0) { logger.info("娌℃湁鎵惧埌缂栫爜"); return; } - for (ClientBusinessObject codeAllCode : allCodeList) { + for (com.vci.client.bof.ClientBusinessObject codeAllCode : allCodeList) { codeAllCode.setLcStatus("Editing"); codeAllCode.setAttributeValue("lcstatus", "Editing"); } -- Gitblit v1.9.3