package safeluck.drive.evaluation.httpmodule; import okhttp3.ResponseBody; import retrofit2.Call; import retrofit2.http.Body; import retrofit2.http.HEAD; import retrofit2.http.Headers; import retrofit2.http.POST; public interface AYApiService { // 地址:https://trainsim-api.aaej.cn/api/get/area // 参数: // { // sn:"0314200100000002", // area_type:"place" // } // 说明:POST请求,场地area_type传place,车模型area_type传car @POST("api/get/area") Call getMapsAndVehicleModel(@Body HttpRequetBean httpRequetBean); }