luxiaotao1123
2024-03-27 51b006cb8b5ad318e0386113ee4ff1cd8847c56c
zy-asrs-wcs/src/main/resources/mapper/rcs/MotionMapper.xml
@@ -2,4 +2,20 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.zy.asrs.wcs.rcs.mapper.MotionMapper">
    <select id="selectOfTop1" resultType="com.zy.asrs.wcs.rcs.entity.Motion">
        select top 1 * from rcs_motion
        where 1=1
        and uuid = #{uuid}
        and motion_sts = #{motionSts}
        order by priority desc
    </select>
    <select id="selectOfNext" resultType="com.zy.asrs.wcs.rcs.entity.Motion">
        select * from rcs_motion
        where 1=1
        and uuid = #{uuid}
        and priority = #{priority} - 1
        order by priority desc
    </select>
</mapper>