新增航线AI绑定、自动开启
This commit is contained in:
parent
5ac4eb1043
commit
d14da94715
|
|
@ -173,6 +173,13 @@ public class RouteServiceImpl extends CrudServiceImpl<RouteDao, RouteEntity, Rou
|
||||||
}
|
}
|
||||||
|
|
||||||
routeDTO.setRouteWaypointList(routeWaypointDTOList);
|
routeDTO.setRouteWaypointList(routeWaypointDTOList);
|
||||||
|
|
||||||
|
//智眸AI
|
||||||
|
RouteAiEntity routeAiEntity = routeAiDao.selectOne(new QueryWrapper<RouteAiEntity>().eq("route_id", id));
|
||||||
|
if (routeAiEntity != null) {
|
||||||
|
routeDTO.setZhimouAppId(routeAiEntity.getZhimouAppId());
|
||||||
|
routeDTO.setZhimouChildId(routeAiEntity.getZhimouChildId());
|
||||||
|
}
|
||||||
return routeDTO;
|
return routeDTO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue