You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
935 B
Java
40 lines
935 B
Java
package com.example.services;
|
|
|
|
import com.example.api.R;
|
|
|
|
import javax.jws.WebMethod;
|
|
import javax.jws.WebParam;
|
|
import javax.jws.WebService;
|
|
|
|
/**
|
|
* Created by wangh on 2021/1/14-10:10。
|
|
*/
|
|
@WebService(targetNamespace = "http://service.example.com/", name = "authorPortType")
|
|
public interface IService {
|
|
/**
|
|
* 入库开始读
|
|
*
|
|
* @param containerRegisterQuery
|
|
*/
|
|
@WebMethod
|
|
R getScanInfoInCenterStart(
|
|
@WebParam(name = "containerRegisterQuery") String containerRegisterQuery,
|
|
@WebParam(name = "pdaID") String pdaip,
|
|
@WebParam(name="functionID") int functionID);
|
|
|
|
/**
|
|
* 入库 结束读
|
|
*
|
|
|
|
*/
|
|
@WebMethod
|
|
R getScanInfoInCenterStop(
|
|
@WebParam(name = "containerRegisterQuery") String containerRegisterQuery
|
|
, @WebParam(name = "pdaID") String pdaip
|
|
,@WebParam(name="functionID") int functionID
|
|
);
|
|
|
|
|
|
|
|
}
|