| | |
| | | |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import com.zy.asrs.entity.LocMast; |
| | | import com.zy.asrs.entity.param.ErrorDeviceParam; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | |
| | | @Mapper |
| | | @Repository |
| | | public interface LocMastMapper extends BaseMapper<LocMast> { |
| | | List<LocMast> asrLocMastNotInDetl1(); |
| | | List<LocMast> asrLocMastNotInDetl2(); |
| | | List<LocMast> asrLocMastNotInDetl3(); |
| | | List<ErrorDeviceParam> adjacentLocMast(); |
| | | List<LocMast> selectLocByLev(Integer lev); |
| | | |
| | | LocMast queryFreeLocMast(@Param("row") Integer row, @Param("locType1") Short locType1,@Param("whsType") Long whsType); |
| | | |