com.rt.service.Service Maven / Gradle / Ivy
/**
*
*/
package com.rt.service;
/**
* service interface
*
* @author msc
*/
public interface Service {
/**
* 执行远程服务接口
*
* @param context context
* @return Object Object
* @throws Exception exception
*/
Object execute(Object context) throws Exception;
}