zhou zhou
9 小时以前 f85b03552c97f935e2c5102dee08648d6ab8e782
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
31
32
package com.vincent.rsf.server.api.service;
 
import com.vincent.rsf.framework.common.R;
import com.vincent.rsf.server.api.entity.params.CallForEmptyContainersParam;
import com.vincent.rsf.server.api.entity.params.ContainerWaveParam;
import com.vincent.rsf.server.api.entity.params.PdaGeneralParam;
 
import java.util.Map;
 
public interface PdaOutStockService {
    R getOutStockTaskItem(String barcode);
 
    R getWaveListItem(String barcode);
 
    R getContainerWaveList(Map<String, String> map);
 
    R saveWavePick(ContainerWaveParam containerWaveParam,Long loginUserId);
    R callForEmptyContainers(CallForEmptyContainersParam containerWaveParam, Long loginUserId);
    R saveOutTaskSts(String barcode);
 
    R containerRebinding(PdaGeneralParam param,Long loginUserId);
 
    R taskItemList(PdaGeneralParam param, Long loginUserId);
 
    R getOrderItem(PdaGeneralParam param);
 
    R getStationArea(PdaGeneralParam param);
 
    R productionDirectDelivery(PdaGeneralParam param,Long loginUserId);
 
    R finishedProductDirectOutput(PdaGeneralParam param, Long loginUserId);
}