| | |
| | | public interface Apis { |
| | | //测试服 |
| | | //String HTTP = "http://192.168.1.45:10010/"; |
| | | String HTTP = "http://192.168.0.212/system_gateway/"; |
| | | String HTTP = "http://10.49.152.112/system_gateway/"; |
| | | String HEAT_HTTP = "do?c=220301"; |
| | | /** |
| | | * 查询版本信息 |
| | |
| | | */ |
| | | @GET("visitsAdmin/cloudService/web/cabinet/updateRunStatusById") |
| | | Observable<BaseResponse> heart(@Query("id")Integer id); |
| | | |
| | | /** |
| | | * 同步柜格实际钥匙数据 |
| | | */ |
| | | @POST("visitsAdmin/cloudService/web/cabinet/syncGridData") |
| | | Observable<BaseResponse> syncGridData(@Body RequestBody requestBody); |
| | | |
| | | /** |
| | | * 上传报错信息 |
| | |
| | | */ |
| | | @POST("loginCabinet") |
| | | Observable<BaseResponse<String>> loginCabinet(@Body RequestBody requestBody); |
| | | |
| | | } |
| | | |