skyouc
11 小时以前 ecdc2cadd4a21b80de4e30e38878fdeb39084e3f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.vincent.rsf.server.api.service;
 
import com.vincent.rsf.framework.common.R;
import com.vincent.rsf.server.api.entity.dto.ContainerWaveDto;
 
import java.util.List;
import java.util.Map;
 
public interface PdaOutStockService {
    R getOutStockTaskItem(String barcode);
 
    R getWaveListItem(String barcode);
 
    R getContainerWaveList(Map<String, String> map);
 
    R saveWavePick(List<ContainerWaveDto> containerWaveDtos);
}