我正在使用Retrofit 2.0进行项目的api通话。一切都很好。最近我遇到了一个我无法执行的困难场景。
Retrofit Callback的工作类型:
@GET
Call<***CountryPojo***> getCountries(@Header(headerAuthorization) String lang, @Url String url,@QueryMap Map<String, String> limit);
在上面的回调&#34; CountryPojo是带有getter和setter的pojo类。
我的要求是通常保持pojoclass Type,以便我可以将特定的pojo类传递给它并返回回调。
例如:
@GET
Call<***CommonPojoClass***> getCountries(@Header(headerAuthorization) String lang, @Url String url,@QueryMap Map<String, String> limit);
怎么做?任何帮助都应该非常感谢。