src/main/java/com/zy/asrs/service/LocMastService.java
@@ -1,13 +1,19 @@ package com.zy.asrs.service; 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 java.util.List; public interface LocMastService extends IService<LocMast> { /** * 检索可用库位 * 获取同组货架的空库位 * @param sourceLocNo 源库位 * @return 同组空库位集合 */ LocMast queryFreeLocMast(Integer row, Integer locType); List<String> queryGroupEmptyStock(String sourceLocNo); List<Integer> getLevList(); }