自动化立体仓库 - WMS系统
#
18516761980
2021-12-06 d4633ae0282a7a3f8af135fc2a1d6a6c7b656dbb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.zy.asrs.service;
 
import com.zy.asrs.entity.BasDevp;
import com.zy.asrs.entity.param.StockOutParam;
import com.zy.common.model.LocDetlDto;
 
public interface MatOutService {
 
    /**
     * 出库启动
     * @return 库位号
     */
    public void startupMatOut(StockOutParam param, Long userId);
 
    /**
     * 出库作业
     * @param staNo 目标站点
     * @param locDetls 待出库产品
     * @param ioType 入出库类型
     */
    void stockOut(String billNO,Integer seqNo,BasDevp staNo, LocDetlDto locDetls, Integer ioType, Long userId);
}