From cc63cebf5333edcb56c520ef855009dad954b6b2 Mon Sep 17 00:00:00 2001
From: YY <1272464982@qq.com>
Date: Fri, 8 Aug 2025 08:37:29 +0800
Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4mapper?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../dao/mapper/CoscoProcessBusinessMapper.xml | 155 ------------------
.../dao/mapper/CoscoProcessEnvMapper.xml | 138 ----------------
2 files changed, 293 deletions(-)
delete mode 100644 src/main/resources/com/chinaunicom/zyhy/ebtp/coscoprocess/dao/mapper/CoscoProcessBusinessMapper.xml
delete mode 100644 src/main/resources/com/chinaunicom/zyhy/ebtp/coscoprocess/dao/mapper/CoscoProcessEnvMapper.xml
diff --git a/src/main/resources/com/chinaunicom/zyhy/ebtp/coscoprocess/dao/mapper/CoscoProcessBusinessMapper.xml b/src/main/resources/com/chinaunicom/zyhy/ebtp/coscoprocess/dao/mapper/CoscoProcessBusinessMapper.xml
deleted file mode 100644
index ffa02f6..0000000
--- a/src/main/resources/com/chinaunicom/zyhy/ebtp/coscoprocess/dao/mapper/CoscoProcessBusinessMapper.xml
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- select id, business_type,business_url, process_instance_id, business_id, business_extend, del_flag, create_by, create_time, update_by, update_time, last_update_time
- from cosco_process_business
-
-
-
-
-
-
-
- insert into cosco_process_business
-
- id,
- business_type,
- process_instance_id,
- business_id,
- business_extend,
- del_flag,
- create_by,
- create_time,
- update_by,
- update_time,
- last_update_time,
- business_url,
-
-
-
-
- #{id},
- #{businessType},
- #{processInstanceId},
- #{businessId},
- #{businessExtend},
- #{delFlag},
- #{createBy},
- #{createTime},
- #{updateBy},
- #{updateTime},
- #{lastUpdateTime},
- #{businessUrl},
-
-
-
-
- insert into cosco_process_business
- ( id, business_type, process_instance_id, business_id,
- business_extend, del_flag, create_by, create_time, update_by, update_time,
- last_update_time,business_url)
- values
-
- ( #{item.id}, #{item.businessType}, #{item.processInstanceId},
- #{item.businessId}, #{item.businessExtend}, #{item.delFlag},
- #{item.createBy}, #{item.createTime}, #{item.updateBy}, #{item.updateTime},
- #{item.lastUpdateTime},#{item.businessUrl})
-
-
-
- update cosco_process_business
-
- business_type =
- #{businessType},
-
- process_instance_id =
- #{processInstanceId},
-
- business_id =
- #{businessId},
-
- business_extend =
- #{businessExtend},
-
- del_flag =
- #{delFlag},
-
- create_by =
- #{createBy},
-
- create_time =
- #{createTime},
-
- update_by =
- #{updateBy},
-
- update_time =
- #{updateTime},
-
- last_update_time =
- #{lastUpdateTime},
-
- business_url =
- #{businessUrl},
-
-
-
- where id = #{id}
-
-
-
- update cosco_process_business set del_flag = 2
- where id = #{id}
-
-
-
- update cosco_process_business set del_flag = 2 where id in
-
- #{id}
-
-
-
diff --git a/src/main/resources/com/chinaunicom/zyhy/ebtp/coscoprocess/dao/mapper/CoscoProcessEnvMapper.xml b/src/main/resources/com/chinaunicom/zyhy/ebtp/coscoprocess/dao/mapper/CoscoProcessEnvMapper.xml
deleted file mode 100644
index f1c98f4..0000000
--- a/src/main/resources/com/chinaunicom/zyhy/ebtp/coscoprocess/dao/mapper/CoscoProcessEnvMapper.xml
+++ /dev/null
@@ -1,138 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- select id, business_type, model_id, business_key, business_url, del_flag, create_by, create_time, update_by, update_time, last_update_time
- from cosco_process_env
-
-
-
-
-
-
-
- insert into cosco_process_env
-
- id,
- business_type,
- model_id,
- business_key,
- business_url,
- del_flag,
- create_by,
- create_time,
- update_by,
- update_time,
- last_update_time,
-
-
- #{id},
- #{businessType},
- #{modelId},
- #{businessKey},
- #{businessUrl},
- #{delFlag},
- #{createBy},
- #{createTime},
- #{updateBy},
- #{updateTime},
- #{lastUpdateTime},
-
-
-
- insert into cosco_process_env
- ( id, business_type, model_id, business_key, business_url, del_flag, create_by, create_time, update_by, update_time, last_update_time)
- values
-
- ( #{item.id}, #{item.businessType}, #{item.modelId}, #{item.businessKey}, #{item.businessUrl}, #{item.delFlag}, #{item.createBy}, #{item.createTime}, #{item.updateBy}, #{item.updateTime}, #{item.lastUpdateTime})
-
-
-
- update cosco_process_env
-
- business_type =
- #{businessType},
-
- model_id =
- #{modelId},
-
- business_key =
- #{businessKey},
-
- business_url =
- #{businessUrl},
-
- del_flag =
- #{delFlag},
-
- create_by =
- #{createBy},
-
- create_time =
- #{createTime},
-
- update_by =
- #{updateBy},
-
- update_time =
- #{updateTime},
-
- last_update_time =
- #{lastUpdateTime},
-
-
- where id = #{id}
-
-
-
- update cosco_process_env set del_flag = 2
- where id = #{id}
-
-
-
- update cosco_process_env set del_flag = 2 where id in
-
- #{id}
-
-
-