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

4 years ago
package com.example.services;
import com.example.api.R;
4 years ago
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
/**
* Created by wangh on 2021/1/14-10:10
*/
4 years ago
@WebService(targetNamespace = "http://service.example.com/", name = "authorPortType")
4 years ago
public interface IService {
/**
*
*
* @param containerRegisterQuery
*/
@WebMethod
R getScanInfoInCenterStart(
4 years ago
@WebParam(name = "containerRegisterQuery") String containerRegisterQuery,
@WebParam(name = "pdaID") String pdaip,
@WebParam(name="functionID") int functionID);
4 years ago
/**
*
*
4 years ago
4 years ago
*/
@WebMethod
R getScanInfoInCenterStop(
4 years ago
@WebParam(name = "containerRegisterQuery") String containerRegisterQuery
, @WebParam(name = "pdaID") String pdaip
,@WebParam(name="functionID") int functionID
4 years ago
);
4 years ago
4 years ago
}