From 973eed10d720c7dbd0020407c3b89fe1d385944f Mon Sep 17 00:00:00 2001
From: pang.jiabao <pang_jiabao@163.com>
Date: 星期一, 08 十二月 2025 09:42:20 +0800
Subject: [PATCH] wms功能完善

---
 src/main/resources/mapper/BasWhsMapper.xml |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/src/main/resources/mapper/BasWhsMapper.xml b/src/main/resources/mapper/BasWhsMapper.xml
index ce21ba3..75cfecc 100644
--- a/src/main/resources/mapper/BasWhsMapper.xml
+++ b/src/main/resources/mapper/BasWhsMapper.xml
@@ -3,14 +3,22 @@
 <mapper namespace="com.zy.asrs.mapper.BasWhsMapper">
 
     <!-- 閫氱敤鏌ヨ鏄犲皠缁撴灉 -->
-    <resultMap id="BaseResultMap" type="com.zy.asrs.entity.BasWhs">
+    <resultMap id="BaseResultMap" type="com.zy.asrs.entity.BasWhsType">
         <id column="id" property="id" />
         <result column="whs_desc" property="whsDesc" />
         <result column="modi_user" property="modiUser" />
         <result column="modi_time" property="modiTime" />
         <result column="appe_user" property="appeUser" />
         <result column="appe_time" property="appeTime" />
+        <result column="identifying" property="identifying" />
 
     </resultMap>
 
+    <select id="selectByIdentifying" resultMap="BaseResultMap">
+        select top 1 *
+        from asr_bas_whs_type
+        where 1=1
+        and identifying = #{identifying}
+    </select>
+
 </mapper>

--
Gitblit v1.9.1