自动化立体仓库 - WMS系统
#1
dubin
2 天以前 020eb6dc7ebe1f5f4518c76af19520f9d1d4e9f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.zy.asrs.service;
 
import com.zy.asrs.entity.MatBarcode;
import com.zy.asrs.entity.WaitPakin;
import com.baomidou.mybatisplus.service.IService;
 
import java.util.List;
 
public interface WaitPakinService extends IService<WaitPakin> {
 
    void comb(List<MatBarcode> list);
 
    Integer selectCountByMatNr(String matnr);
}