Merge branch 'test-training2' of https://git.code.tencent.com/lian-cbtc/rtss-server into test-training2-zhouyin

This commit is contained in:
tiger_zhou 2023-01-03 14:45:29 +08:00
commit e4c7ac5eea

View File

@ -340,6 +340,7 @@ public class RtsMapFunctionServiceImpl implements RtsMapFunctionService {
Supplier<RtsMapFunctionCreateVO> joint = getJointFunctionSupplier(mapId, systemNameSet, msgList, msgPrefix, simType, dispatcherOptional);
Supplier<RtsMapFunctionCreateVO> trainingDesign = getTrainingDesignFunctionSupplier(mapId, systemNameSet, msgList, msgPrefix, simType, dispatcherOptional);
Supplier<RtsMapFunctionCreateVO> trainingRoom = getTrainingRoomFunctionSupplier(mapId, systemNameSet, msgList, msgPrefix, simType);
Supplier<RtsMapFunctionCreateVO> runPlanDesign = getRunPlanDesignFunctionSupplier(mapId, systemNameSet, msgList, simType);
fillFunctions.add(dispatchSystem);
fillFunctions.add(stationSystem);
@ -350,6 +351,7 @@ public class RtsMapFunctionServiceImpl implements RtsMapFunctionService {
fillFunctions.add(joint);
fillFunctions.add(trainingDesign);
fillFunctions.add(trainingRoom);
fillFunctions.add(runPlanDesign);
return fillFunctions;
}