Commit e63defd0a86ffb8d50bf662360f4d88e04ebd08f

Authored by 王通
1 parent 4c536f0d

1.数知梦接口需要扩展进/external

src/main/java/com/bsth/server_rs/dks/BxRestService.java
... ... @@ -157,7 +157,7 @@ public class BxRestService {
157 157 if (limitDevices.contains(car.getEquipmentCode()) || limitDevices.contains("ALL")) {
158 158 Map<String, Object> carMap = new HashMap<>();
159 159 Line line = LineBufferData.findOne(device2line.get(car.getEquipmentCode()));
160   - if (line == null || !limitLines.contains(line.getLineCode())) {
  160 + if (line == null || !limitLines.contains(line.getLineCode()) || !limitLines.contains("ALL")) {
161 161 continue;
162 162 }
163 163 carMap.put("lineName", line.getName());
... ...