123456789101112131415161718192021 |
- package camel.api7.processor;
- import javax.jws.WebMethod;
- import javax.jws.WebParam;
- import javax.jws.WebService;
- /**
- * @author HZY
- * @vsrsion 1.0
- * Created at 2017/4/14.
- */
- @WebService(name = "testWService")
- public interface TestWService {
- @WebMethod
- public Object test();
- @WebMethod
- public int plus(@WebParam(name = "a") int a, @WebParam(name = "b") int b);
- }
|