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