Merge remote-tracking branch 'origin/test' into test

This commit is contained in:
joylink_zhangsai 2023-05-09 17:21:40 +08:00
commit dd1238d607
2 changed files with 6 additions and 6 deletions

View File

@ -17,21 +17,21 @@ public class StationDiagram {
public StationDiagram(VirtualRealityTrain train){
this.groupNum = train.getGroupNumber();
this.right = train.isRight();
this.stationComplateRatio = 0F;
this.stationCompleteRatio = 0F;
this.finalStation = false;
}
public StationDiagram(VirtualRealityTrain train,Float stationComplateRatio, Boolean finalStation){
this.groupNum = train.getGroupNumber();
this.right = train.isRight();
this.stationComplateRatio = stationComplateRatio;
this.stationCompleteRatio = stationComplateRatio;
this.finalStation = finalStation;
}
public StationDiagram(VirtualRealityTrain train,boolean showTrainDiagram,Float stationComplateRatio, Boolean finalStation){
this.groupNum = train.getGroupNumber();
this.right = train.isRight();
this.stationComplateRatio = stationComplateRatio;
this.stationCompleteRatio = stationComplateRatio;
this.finalStation = finalStation;
this.showTrainDiagram = showTrainDiagram;
}
@ -48,7 +48,7 @@ public class StationDiagram {
/**
* 运行完成度
*/
private Float stationComplateRatio;
private Float stationCompleteRatio;
/**
* 是否到达终点车站

View File

@ -212,10 +212,10 @@ public class SimulationServiceImpl implements SimulationService {
@Override
public String createSimulation(Long mapFunctionId, LoginUserInfoVO loginInfo) {
MapFunctionVO mapFunctionVO = rtsMapFunctionService.get(mapFunctionId);
String group = this.checkUserExistSimulation(mapFunctionVO,loginInfo.getAccountVO());
/* String group = this.checkUserExistSimulation(mapFunctionVO,loginInfo.getAccountVO());
if(StringUtils.isNotEmpty(group)){
return group;
}
}*/
Long mapId = mapFunctionVO.getMapId();
Map<String,Boolean> createUserType = this.checkUserPermission(mapFunctionVO,loginInfo);
SimulationWorkParamVO workParamVO = mapFunctionVO.getParamVO();