#
zhou zhou
昨天 2aa107576ba3e2e49723d3bb49644a6ebd9d779a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
}