| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | | <?xml version="1.0" encoding="UTF-8"?> |  | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |  | <mapper namespace="com.zy.asrs.wcs.core.mapper.MotionMapper"> |  |   |  |     <select id="selectOfTop1" resultType="com.zy.asrs.wcs.core.entity.Motion"> |  |         select * from rcs_motion |  |         where 1=1 |  |         and uuid = #{uuid} |  |         and motion_sts = #{motionSts} |  |         order by priority desc |  |         limit 0,1 |  |     </select> |  |   |  |     <select id="selectOfNext" resultType="com.zy.asrs.wcs.core.entity.Motion"> |  |         select * from rcs_motion |  |         where 1=1 |  |         and uuid = #{uuid} |  |         and priority = #{priority} - 1 |  |         order by priority desc |  |     </select> |  |   |  | </mapper> | 
 |