| | |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import com.zy.asrs.entity.LocDetl; |
| | | import com.zy.asrs.entity.LocMast; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import com.zy.asrs.entity.param.ErrorDeviceParam; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface LocMastService extends IService<LocMast> { |
| | | |
| | | List<LocMast> asrLocMastNotInDetl1(); |
| | | List<LocMast> asrLocMastNotInDetl2(); |
| | | List<LocMast> asrLocMastNotInDetl3(); |
| | | List<ErrorDeviceParam> adjacentLocMast(); |
| | | /** |
| | | * 检索可用库位 |
| | | */ |
| | |
| | | // LocMast selectLocByLocStsPakInO(Integer curRow,Integer nearRow,List<String> locNos); |
| | | // LocMast selectLocByLocStsPakInO(Integer curRow,Integer nearRow,List<String> locNos, Long whsType); |
| | | LocMast selectLocByLocStsPakInO(Integer curRow,Integer nearRow,LocMast locNoo, Long whsType); |
| | | |
| | | //查询指定楼层的库位数据 |
| | | List<LocMast> selectLocByLev(Integer lev); |
| | | } |