#
gtsxc
2024-11-25 d8b1f82c07cf723b2590cae5a432ff78a514b05e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.zy.asrs.wcs.core.mapper;
 
import com.zy.asrs.wcs.core.entity.Motion;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
@Mapper
@Repository
public interface MotionMapper extends BaseMapper<Motion> {
 
    Motion selectOfTop1(@Param("uuid") String uuid, @Param("motionSts") Long motionSts, @Param("hostId") Long hostId);
 
    Motion selectOfNext(@Param("uuid") String uuid, @Param("priority") Integer priority, @Param("hostId") Long hostId);
 
}