自动化立体仓库 - WMS系统
dubin
2025-12-19 b00eeab31bd13ba34a03301aa441b0751d6a93e4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.MatCodeCountDto;
import com.zy.asrs.entity.WrkDetl;
 
import java.util.List;
 
public interface WrkDetlService extends IService<WrkDetl> {
 
    List<WrkDetl> selectByWrkNo(Integer wrkNo);
 
    void createWorkDetail(Integer workNo, List<MatCodeCountDto> matCodeCountDtos, String barcode, Long userId);
 
    List<WrkDetl> queryWrkDetl(String matNo, String locNo);
 
    /**
     * PDA盘点根据出库口查询对应物料信息
     */
    List<WrkDetl> queryMatFromDevNo(Integer devNo);
 
    WrkDetl selectByZpallet0(String zpallet);
 
    boolean updateBarcode(String sBarcode,String tBarcode,String batch);
 
}