自动化立体仓库 - WMS系统
pang.jiabao
2025-09-16 c902e238626f737a224325ac503706c45f2f247f
src/main/resources/mapper/LocMastMapper.xml
@@ -203,22 +203,5 @@
            #{item}
        </foreach>
    </select>
    <select id="queryLocMasterByLocStsAndRow" resultMap="BaseResultMap">
        select
        top 1 *
        from
        asr_loc_mast alm
        where
        alm.loc_sts = 'D'
        and loc_type = #{locType}
        <if test="rowList != null and !rowList.isEmpty()">
            and alm.row1 in
            <foreach collection="rowList" item="item" open="(" close=")" separator=",">
                #{item}
            </foreach>
        </if>
        order by
        lev1,bay1,row1
    </select>
</mapper>