OnshellService.java 721 Bytes
package com.huaheng.wms.onshell;

import com.huaheng.wms.https.ApiResponse;
import com.huaheng.wms.login.UserBean;

import java.util.ArrayList;

import okhttp3.RequestBody;
import retrofit2.http.Body;
import retrofit2.http.POST;
import rx.Observable;

public interface OnshellService {


    /**
     * 上架确定容器号
     * @param body
     * @return
     */
    @POST("mobile/putaway/execute/scanContainer")
    Observable<ApiResponse<ArrayList<ContainerInfo>>> scanContainer(@Body RequestBody body);

    /**
     * 上架确定位置
     * @param body
     * @return
     */
    @POST("mobile/putaway/execute/scanLocationCode")
    Observable<ApiResponse<String>> scanLocationCode(@Body RequestBody body);

}