package com.zzwtec.wechat.rpc.api; import com.alibaba.fastjson.JSONObject; import com.zzwtec.wechat.rpc.APIResponse; /** * 用于请求服务后回调 * @author 毛文超 * */ @FunctionalInterface public interface APIServiceCustom { APIResponse doService(JSONObject request); }