自动化立体仓库 - WMS系统
dubin
2 天以前 6c8588d5f7f0de7e9489426c350472bf911a4933
src/main/resources/mapper/LocMastMapper.xml
@@ -41,4 +41,15 @@
        select DISTINCT lev1 from asr_loc_mast
    </select>
    <select id="selectLoc" resultMap="BaseResultMap">
        select * from asr_loc_mast where 1 = 1
        AND loc_sts = 'O'
        AND row1 IN
        <if test="rows != null">
            <foreach collection="rows" item="row" open="(" separator="," close=")">
                #{row}
            </foreach>
        </if>
        order by bay1 asc, lev1 asc
    </select>
</mapper>