From a408f7e540dcedbe85698cd1c7f48dbb0ae44f6d Mon Sep 17 00:00:00 2001
From: huangjiayang <5265313@qq.com>
Date: 星期三, 23 四月 2025 09:57:26 +0800
Subject: [PATCH] 【UPDATE】修改钣金实体中生产数量类型为小数

---
 aps-modules/aps-core/src/main/resources/mapper/core/ApsGasPipingPlanMapper.xml |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/aps-modules/aps-core/src/main/resources/mapper/core/ApsGasPipingPlanMapper.xml b/aps-modules/aps-core/src/main/resources/mapper/core/ApsGasPipingPlanMapper.xml
index 29da727..537e360 100644
--- a/aps-modules/aps-core/src/main/resources/mapper/core/ApsGasPipingPlanMapper.xml
+++ b/aps-modules/aps-core/src/main/resources/mapper/core/ApsGasPipingPlanMapper.xml
@@ -79,6 +79,8 @@
             <if test="isStockComplete != null "> and is_stock_complete = #{isStockComplete}</if>
             <if test="hasTurnback != null "> and has_turnback = #{hasTurnback}</if>
             <if test="hasRisk != null "> and has_risk = #{hasRisk}</if>
+
+           and del_flag ='0'
         </where>
     </select>
     
@@ -216,4 +218,8 @@
             #{id}
         </foreach>
     </delete>
+
+    <update id="removeAllPlans" >
+        update  aps_gas_piping_plan  set del_flag='1' where del_flag ='0'
+    </update>
 </mapper>
\ No newline at end of file

--
Gitblit v1.9.3