package com.project.hyb.common.httpclient; import com.alibaba.fastjson.JSONObject; import com.dtflys.forest.annotation.Get; import com.dtflys.forest.annotation.Query; import com.dtflys.forest.annotation.Var; import java.util.Map; public interface ForestClient { @Get("{url}") JSONObject get(@Var("url") String url, @Query Map map); }