1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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<ResponseBody> getMapsAndVehicleModel(@Body HttpRequetBean httpRequetBean);
}