From df325bcf7aabda3e879fbf86c85b3fd5047cffe0 Mon Sep 17 00:00:00 2001
From: zhou zhou <3272660260@qq.com>
Date: 星期五, 05 十二月 2025 15:34:31 +0800
Subject: [PATCH] #出库单
---
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