我有一个web服务链接,我想用不同的customerid以

 http://apidev.myserver.com.au:8980/TestService/rest/TestService/jobs/bycustid/customerId

如何附加customerid的值?
这是我的基本URL:
 http://apidev.myserver.com.au:8980/TestService/rest/TestService/

这就是我的调用界面:
interface CustomerJobs {
    @GET("jobs/bycustid/11726")
    Call<CustomerJobsPojo> getCustomerJobs();
}

最佳答案

正如doc所说:

interface CustomerJobs {

    @GET("jobs/bycustid/{id}")
    Call<CustomerJobsPojo> getCustomerJobs(@Path("id") int id);

}

09-27 14:27