自动化立体仓库 - WMS系统
#
LSH
2023-02-14 c46f9c28f8d40d2a4efcc7ef6e528661d97a4be0
src/main/java/com/zy/asrs/service/WrkMastService.java
@@ -3,8 +3,31 @@
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.WrkMast;
import java.util.List;
public interface WrkMastService extends IService<WrkMast> {
    int getWorkingMast(Integer devpNo);
    List<WrkMast> selectToBeCompleteData();
    List<WrkMast> selectToBeHistoryData();
    WrkMast selectByBarcode(String barcode);
    Double getIoPri(Integer ioType, String locNo);
    /**
     * 从工作档得到站点入库暂存数
     * @param crnNo
     * @return
     */
    int getStoreCount(Integer crnNo);
    Boolean setSteEmpty(Integer wrkNo);
    WrkMast selectOfPick(Integer wrkNo, Integer ioType);
    WrkMast selectPakoutOfStaNo(Integer staNo);
}