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
27
28
29
30
| package com.zy.asrs.common.wms.service;
|
| import com.zy.asrs.common.domain.param.FullStoreParam;
|
| public interface WorkService {
|
| /**
| * 全板入库
| *
| * @return 库位号
| */
| String startupFullPutStore(FullStoreParam param, Long userId, Long hostId);
|
| /**
| * 手动完成工作档
| */
| void completeWrkMast(String workNo, Long userId, Long hostId);
|
| /**
| * 手动取消工作档
| */
| void cancelWrkMast(String workNo, Long userId, Long hostId);
|
| /**
| * 手动拣料入库工作档
| */
| void pickWrkMast(String workNo, Long userId, Long hostId);
|
|
| }
|
|