/* * Copyright (C), 2018-2021 * Project: starter * FileName: WebService * Author: Louis * Date: 2021/7/12 11:32 */ package com.fr.plugin.tabledataservice.webservice; import com.fr.plugin.tabledataservice.bean.Response; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebResult; import javax.jws.WebService; /** *
* * * @author fr.open * @since 1.0.0 */ @WebService public interface WebServiceManager { public static final String SERVICE_NAME = "/api"; @WebResult(name = "Result") @WebMethod(operationName = "BizOperation_Req") public Response BizOperationReq(@WebParam(name = "fromUnit") String fromUnit, @WebParam(name = "toUnit") String toUnit, @WebParam(name = "fromSys") String fromSys, @WebParam(name = "toSys") String toSys, @WebParam(name = "bizOperation") String bizOperation, @WebParam(name = "key") String key, @WebParam(name = "bizData") String bizData, @WebParam(name = "Op1") String op1 ); }