自动化立体仓库 - WMS系统
pang.jiabao
2025-02-07 ee052d69dfec198229d541c3e39f45382662983d
src/main/resources/mapper/LocMastMapper.xml
@@ -203,5 +203,22 @@
            #{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>