ColletGoodService.java
1.1 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.huaheng.wms.collectgoods;
import com.huaheng.wms.https.ApiResponse;
import com.huaheng.wms.login.UserBean;
import java.util.ArrayList;
import java.util.List;
import okhttp3.RequestBody;
import retrofit2.http.Body;
import retrofit2.http.POST;
import rx.Observable;
public interface ColletGoodService {
/**
* 入库单号
* @param body
* @return
*/
@POST("mobile/receipt/batch/scanBill")
Observable<ApiResponse<ArrayList<ReceiptInfo>>> scanBill(@Body RequestBody body);
/**
* 检测容器号
* @param body
* @return
*/
@POST("mobile/receipt/batch/sanContainer")
Observable<ApiResponse<String>> sanContainer(@Body RequestBody body);
/**
* 保存逐次收货单号
* @param body
* @return
*/
@POST("mobile/receipt/oneByOne/save")
Observable<ApiResponse<GoodsInfo>> saveBillByPiece(@Body RequestBody body);
/**
* 保存批量收货单号
* @param body
* @return
*/
@POST("mobile/receipt/batch/save")
Observable<ApiResponse<List<GoodsInfo>>> saveBillByBulk(@Body RequestBody body);
}