package com.zy.asrs.service; import com.baomidou.mybatisplus.service.IService; import com.zy.asrs.entity.WrkMast; import java.util.List; public interface WrkMastService extends IService { int getWorkingMast(Integer devpNo); List selectToBeCompleteData(); List 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); /** * 获取相同规格货物的库位号,且状态为S入库预约类型 */ List selectSameWrkMast(String matnr); }