Commit 9d7071fc8e8c8d699461783d9c1baf1d4ea6e320
1 parent
aaa033bd
车辆库IP地址修改
Showing
1 changed file
with
3 additions
and
3 deletions
src/main/java/com/bsth/server_rs/bigdata/BigdataService.java
| ... | ... | @@ -856,7 +856,7 @@ public class BigdataService { |
| 856 | 856 | @GET |
| 857 | 857 | @Path("/car/all") |
| 858 | 858 | public List<Map<String, Object>> findCar() { |
| 859 | - String carStr= GetHttpInterface.getHttpInterface("http://180.166.5.82:8076/cars/getAllCarsInterface"); | |
| 859 | + String carStr= GetHttpInterface.getHttpInterface("http://58.247.254.118:8076/cars/getAllCarsInterface"); | |
| 860 | 860 | //车辆库资料资料 |
| 861 | 861 | List<Map<String, Object>> clkList=(List<Map<String, Object>>) JSONObject.parse(carStr); |
| 862 | 862 | //调度系统车辆资料 |
| ... | ... | @@ -894,7 +894,7 @@ public class BigdataService { |
| 894 | 894 | @Path("/car/company/{companyId}") |
| 895 | 895 | public List<Map<String, Object>> findCarByCompany(@PathParam("companyId") String companyId) { |
| 896 | 896 | String carStr= GetHttpInterface. |
| 897 | - getHttpInterface("http://180.166.5.82:8076/cars/getAllCarsInterface?company="+companyId); | |
| 897 | + getHttpInterface("http://58.247.254.118:8076/cars/getAllCarsInterface?company="+companyId); | |
| 898 | 898 | //车辆库资料资料 |
| 899 | 899 | List<Map<String, Object>> clkList=(List<Map<String, Object>>) JSONObject.parse(carStr); |
| 900 | 900 | //调度系统车辆资料 |
| ... | ... | @@ -931,7 +931,7 @@ public class BigdataService { |
| 931 | 931 | @Path("/car/code/{carCode}") |
| 932 | 932 | public List<Map<String, Object>> findCarByCode(@PathParam("carCode") String carCode) { |
| 933 | 933 | String carStr= GetHttpInterface. |
| 934 | - getHttpInterface("http://101.95.0.106:8076/cars/getAllCarsInterface?car_code="+carCode); | |
| 934 | + getHttpInterface("http://58.247.254.118:8076/cars/getAllCarsInterface?car_code="+carCode); | |
| 935 | 935 | //车辆库资料资料 |
| 936 | 936 | List<Map<String, Object>> clkList=(List<Map<String, Object>>) JSONObject.parse(carStr); |
| 937 | 937 | //调度系统车辆资料 | ... | ... |