From e4efff6637f4d598a7efdfca8b62fbb4c3286b02 Mon Sep 17 00:00:00 2001
From: hongjli <3117313295@qq.com>
Date: 星期四, 22 五月 2025 15:39:39 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev' into dev
---
aps-modules/aps-core/src/main/resources/mapper/core/ApsWeldSeamStandardMapper.xml | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/aps-modules/aps-core/src/main/resources/mapper/core/ApsWeldSeamStandardMapper.xml b/aps-modules/aps-core/src/main/resources/mapper/core/ApsWeldSeamStandardMapper.xml
index bf80750..4cbf684 100644
--- a/aps-modules/aps-core/src/main/resources/mapper/core/ApsWeldSeamStandardMapper.xml
+++ b/aps-modules/aps-core/src/main/resources/mapper/core/ApsWeldSeamStandardMapper.xml
@@ -12,11 +12,12 @@
<result property="hupQty" column="hup_qty" />
<result property="lodQty" column="lod_qty" />
<result property="type" column="type" />
+ <result property="plant" column="plant" />
<result property="delFlag" column="del_flag" />
</resultMap>
<sql id="selectApsWeldSeamStandardVo">
- select id, item_code, item_figure, item_figure_version, hup_qty, lod_qty, type, del_flag from aps_weld_seam_standard
+ select id, item_code, item_figure, item_figure_version, hup_qty, lod_qty, type, plant, del_flag from aps_weld_seam_standard
</sql>
<select id="selectApsWeldSeamStandardList" parameterType="com.aps.core.domain.ApsWeldSeamStandard" resultMap="ApsWeldSeamStandardResult">
@@ -28,6 +29,7 @@
<if test="hupQty != null "> and hup_qty = #{hupQty}</if>
<if test="lodQty != null "> and lod_qty = #{lodQty}</if>
<if test="type != null and type != ''"> and type = #{type}</if>
+ <if test="plant != null and plant != ''"> and plant = #{plant}</if>
and del_flag = 0
</where>
</select>
--
Gitblit v1.9.3