路线规划模块类图
2016-03-11 17:50:28 82 举报
路线规划模块类图主要包括以下几个部分:起点、终点、路径和节点。起点和终点是路线的起始和终止位置,它们分别与路径建立关联。路径是由一系列节点组成的,表示从起点到终点的行驶路线。节点是路线上的一个具体位置,可以是交叉口、地标等。在类图中,起点和终点通常用矩形表示,路径用带箭头的线表示,节点用圆形表示。此外,还可以包含一些辅助类,如距离计算器、时间估计器等,用于计算路径的长度和预计行驶时间。总之,路线规划模块类图展示了如何通过起点、终点、路径和节点之间的关系来实现对行驶路线的规划和管理。
作者其他创作
大纲/内容
1
PlannedRoute
-plannedRouteId : int-parkId : int-pathStr : String-userId : int-planTime : TimeStamp
PlaningRouteService
-routeDao
+planning()+savePlannigRoute()+findByParkId()+findById()
ProjectDao
-project:Porject
+save()+findById()+findByParkId()+updateProject()
Project
-projectId : int-projectName : String -projectLng : double-projectLati : double
ClusterController
- clusterService:ClusterService
+saveClusterPath()+showByParkId()+delete()+cluster()
ClusterService
-clusterDao:ClusterDao
+saveClusterPath()+findByParkId()+delete()+cluster()
PlaningRouteDao
-plannedRoute:PlannedRoute
+find()+save()+findByParkid()
PlayPath
-playPathId : int-parkId : int-pathStr : String-userId : int-playTime : TimeStamp-clusterId:int
PlaningRouteController
-routeService:PlaningRouteService
+planning()+savePlannigRoute()+showByParkId()+showById()
playPathDao
-playPath:PlayPath
+findAllPath()+save()+findPathById()
0 条评论
下一页