pang.jiabao
2024-10-24 c7338c0fc1513507c05c1a7fd00bff8c11ad5d1e
src/main/resources/mapper/LocMastMapper.xml
@@ -58,5 +58,16 @@
        select top 1 * from asr_loc_mast where crn_no = #{crnNo} and loc_sts = 'O'
        ORDER BY NEWID()
    </select>
    <select id="queryFreeLocMastNotBay" resultMap="BaseResultMap">
        select top 1 *
        from asr_loc_mast
        where row1=#{row}
        and loc_sts='O'
        and bay1 > #{bay}
        <if test="locType1 != null">
            and loc_type1 = #{locType1}
        </if>
        order by NEWID(),lev1 asc,bay1 asc
    </select>
</mapper>