From 089b302259e03ce52fc102bcf168d1fa048fffe9 Mon Sep 17 00:00:00 2001
From: jinlin <jinlin>
Date: 星期四, 26 九月 2024 16:38:28 +0800
Subject: [PATCH] 修改

---
 modules/mainPart/src/main/resources/mapper/basicInfo/XhProductModelDao.xml |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/modules/mainPart/src/main/resources/mapper/basicInfo/XhProductModelDao.xml b/modules/mainPart/src/main/resources/mapper/basicInfo/XhProductModelDao.xml
index 91e3d92..d14dfec 100644
--- a/modules/mainPart/src/main/resources/mapper/basicInfo/XhProductModelDao.xml
+++ b/modules/mainPart/src/main/resources/mapper/basicInfo/XhProductModelDao.xml
@@ -6,7 +6,11 @@
         delete
         from product_model
         where ship_id = ${shipId}
-          and product_type &gt; 2
+    </delete>
+    <delete id="deleteByPid">
+        delete
+        from product_model
+        where PID = ${id}
     </delete>
 
     <select id="getList" resultType="com.zt.life.modules.mainPart.basicInfo.model.XhProductModel">
@@ -144,4 +148,9 @@
           and a.ship_id = ${shipId}
           and a.id = b.product_id
     </select>
+    <select id="getByPid" resultType="java.lang.Long">
+        select id
+        from product_model
+        where IS_DELETE=0 and PID=${id}
+    </select>
 </mapper>

--
Gitblit v1.9.1