自动化立体仓库 - WMS系统
#
zjj
2023-12-26 e81c1dcf8d2cd9a0095039670a1f34e28078fd97
src/main/resources/mapper/LocMastMapper.xml
@@ -102,6 +102,20 @@
        select * from asr_loc_mast
        where loc_no = #{locNo}
    </select>
    <select id="selectAreaEmpty" resultMap="BaseResultMap">
        select * from asr_loc_mast
        where loc_sts in ('O')
          and loc_type1 = #{locType1}
          and crn_no = #{crnNo}
        ORDER BY lev1,bay1,row1
    </select>
    <select id="selectAllLocNotEmpty" resultMap="BaseResultMap">
        SELECT * FROM asr_loc_mast WHERE loc_sts != 'O' AND loc_no in
        <foreach collection="groupLoc" item="loc" index="index" open="(" close=")" separator=",">
            #{loc}
        </foreach>
    </select>
</mapper>