lbq
15 小时以前 3cc9e4551c42c1eb40c09f181857f2e0b1aa8355
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);
}