From 5317a45f64ae948e7351cce8ccf06ed88ffe4eeb Mon Sep 17 00:00:00 2001
From: zwl <1051256694@qq.com>
Date: 星期一, 20 十月 2025 10:30:03 +0800
Subject: [PATCH] 新增AGV拣料回库或者移动
---
src/main/resources/mapper/LocDetlMapper.xml | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/src/main/resources/mapper/LocDetlMapper.xml b/src/main/resources/mapper/LocDetlMapper.xml
index 54a237e..61c2dc6 100644
--- a/src/main/resources/mapper/LocDetlMapper.xml
+++ b/src/main/resources/mapper/LocDetlMapper.xml
@@ -97,6 +97,9 @@
<if test="anfme!=null and anfme!='' ">
and a.anfme like '%' + #{anfme} + '%'
</if>
+ <if test="batch!=null and batch!='' ">
+ and a.batch like '%' + #{batch} + '%'
+ </if>
<if test="startTime!=null and endTime!=null">
and a.modi_time between #{startTime} and #{endTime}
</if>
@@ -319,5 +322,7 @@
where loc_no=#{locNo}
</select>
-
+ <select id="selectByMatnr" resultType="com.zy.asrs.entity.LocDetl">
+ select * from asr_loc_detl where matnr=#{matnr}
+ </select>
</mapper>
--
Gitblit v1.9.1