From d5ffec728c333461b466ba5761616f90076117e5 Mon Sep 17 00:00:00 2001
From: yuxc <yuxc@vci-tech.com>
Date: 星期五, 19 四月 2024 17:57:04 +0800
Subject: [PATCH] 1、主要完成对一些基础类的替换,将以前老的bean对象换成新平台的bean对象。 2、对树的查询接口进行修改测试联调。 3、对列表数据的查询接口进行修改测试联调。 4、对通用保存接口进行编写测试。

---
 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