From 6c8588d5f7f0de7e9489426c350472bf911a4933 Mon Sep 17 00:00:00 2001
From: dubin <bindu_bean@163.com>
Date: 星期五, 05 十二月 2025 15:47:07 +0800
Subject: [PATCH] towcs
---
src/main/resources/mapper/LocMastMapper.xml | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/mapper/LocMastMapper.xml b/src/main/resources/mapper/LocMastMapper.xml
index 4141025..5ae1ea1 100644
--- a/src/main/resources/mapper/LocMastMapper.xml
+++ b/src/main/resources/mapper/LocMastMapper.xml
@@ -41,4 +41,15 @@
select DISTINCT lev1 from asr_loc_mast
</select>
+ <select id="selectLoc" resultMap="BaseResultMap">
+ select * from asr_loc_mast where 1 = 1
+ AND loc_sts = 'O'
+ AND row1 IN
+ <if test="rows != null">
+ <foreach collection="rows" item="row" open="(" separator="," close=")">
+ #{row}
+ </foreach>
+ </if>
+ order by bay1 asc, lev1 asc
+ </select>
</mapper>
--
Gitblit v1.9.1