1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.vincent.rsf.server.api.service;
|
| import com.vincent.rsf.framework.common.R;
|
| import java.util.Map;
|
| public interface PdaOutStockService {
| R getOutStockTaskItem(String barcode);
|
| R getWaveListItem(String barcode);
|
| R getContainerWaveList(Map<String, String> map);
| }
|
|