修正错误

This commit is contained in:
刘名喜 2024-12-16 17:17:06 +08:00
parent 2ea01a7fff
commit 2b8219d01e

View File

@ -85,7 +85,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectWmStorageLocationByLocationCode" parameterType="String" resultMap="WmStorageLocationResult">
<include refid="selectWmStorageLocationVo"/>
where location_code = #{locationCode} limit 1 and IS_DELETE = 0
where location_code = #{locationCode} and IS_DELETE = 0 limit 1
</select>
<select id="checkLocationCodeUnique" parameterType="WmStorageLocation" resultMap="WmStorageLocationResult">