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<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); 
 | 
} 
 |