From 05a4c18628bba5010c0ce423408cc5f40f864ee0 Mon Sep 17 00:00:00 2001 From: xyc <jc_xiong@hotmail.com> Date: 星期六, 28 九月 2024 18:54:10 +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 > 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