From c0e3f24edd2ef47339c676ff3dc6fdc06b3c387e Mon Sep 17 00:00:00 2001
From: xyc <jc_xiong@hotmail.com>
Date: 星期五, 18 十月 2024 10:42:40 +0800
Subject: [PATCH] 1)修改bug:可靠性预计参数配置,可靠性分布类型下拉框缺少威布尔分布; 2)细化可靠性仿真评估报错信息。

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