From bc20e7dc43b97367b7b70b678e71140a33846ff0 Mon Sep 17 00:00:00 2001
From: tzsk <Administrator@qq.com>
Date: 星期三, 30 七月 2025 22:36:49 +0800
Subject: [PATCH] #
---
src/main/resources/mapper/MatMapper.xml | 16 +++++++++++++++-
1 files changed, 15 insertions(+), 1 deletions(-)
diff --git a/src/main/resources/mapper/MatMapper.xml b/src/main/resources/mapper/MatMapper.xml
index 5f89c82..62c7e73 100644
--- a/src/main/resources/mapper/MatMapper.xml
+++ b/src/main/resources/mapper/MatMapper.xml
@@ -42,8 +42,11 @@
<result column="update_by" property="updateBy" />
<result column="update_time" property="updateTime" />
<result column="memo" property="memo" />
-
+ <result column="store_max" property="storeMax" />
+ <result column="store_min" property="storeMin" />
+ <result column="store_max_date" property="storeMaxDate" />
<result column="stock" property="stock" />
+ <result column="matnr2" property="matnr2" />
</resultMap>
<select id="listByPage" resultMap="BaseResultMap">
@@ -65,8 +68,14 @@
<if test="matnr != null and matnr != ''">
and mm.matnr like concat('%',#{matnr},'%')
</if>
+ <if test="matnr2 != null and matnr2 != ''">
+ and mm.matnr2 like concat('%',#{matnr2},'%')
+ </if>
<if test="maktx != null and maktx != ''">
and mm.maktx like concat('%',#{maktx},'%')
+ </if>
+ <if test="specs != null and specs != ''">
+ and mm.specs like concat('%',#{specs},'%')
</if>
ORDER BY mm.create_time DESC
</select>
@@ -74,4 +83,9 @@
<select id="selectByMatnr" resultMap="BaseResultMap">
select top 1 * from man_mat where 1=1 and matnr = #{matnr}
</select>
+
+ <select id="selectByBarcode" resultMap="BaseResultMap">
+ select top 1 * from man_mat where 1=1 and barcode = #{barcode}
+ </select>
+
</mapper>
--
Gitblit v1.9.1