You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
3 years ago
|
/*
|
||
|
* 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;
|
||
|
|
||
|
/**
|
||
|
* <Function Description><br>
|
||
|
* <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
|
||
|
);
|
||
|
}
|