标签: retrofit2
public interface SthApi { @POST("/") Call<ApiResult> getSth(@Body ApiReq req, @Header("Content-Type") mediaType); }
我需要按动态ApiReq
ApiReq
ApiResult
mediaType
我该怎么办?