Commit 2d825884fa882341638cb184488c82b162905ec3

Authored by 廖磊
1 parent 8d3ea91b

车辆库访问链接变更

src/main/java/com/bsth/server_rs/bigdata/BigdateService.java
... ... @@ -834,7 +834,7 @@ public class BigdateService {
834 834 @Path("/car/all")
835 835 public List<Map<String, Object>> findCar() {
836 836 String carStr= GetHttpInterface.
837   - getHttpInterface("http://101.95.0.106:8076/cars/getAllCarsInterface");
  837 + getHttpInterface("http://180.166.5.82:8076/cars/getAllCarsInterface");
838 838 //车辆库资料资料
839 839 List<Map<String, Object>> clkList=(List<Map<String, Object>>) JSONObject.parse(carStr);
840 840 //调度系统车辆资料
... ... @@ -872,7 +872,7 @@ public class BigdateService {
872 872 @Path("/car/company/{companyId}")
873 873 public List<Map<String, Object>> findCarByCompany(@PathParam("companyId") String companyId) {
874 874 String carStr= GetHttpInterface.
875   - getHttpInterface("http:/101.95.0.106:8076/cars/getAllCarsInterface?company="+companyId);
  875 + getHttpInterface("http://180.166.5.82:8076/cars/getAllCarsInterface?company="+companyId);
876 876 //车辆库资料资料
877 877 List<Map<String, Object>> clkList=(List<Map<String, Object>>) JSONObject.parse(carStr);
878 878 //调度系统车辆资料
... ...