|
@@ -2131,7 +2131,7 @@ public class SimulationProjectServiceImpl implements SimulationProjectService {
|
|
|
if (isEmpty(targetEvaluate) || isEmpty(sp.getScoreExplain())) {
|
|
|
sublistName += ProjectConstants.SEPARATOR + sp.getReturnSceneId() + ProjectConstants.SEPARATOR + sp.getSceneType() + ProjectConstants.SEPARATOR + "--" + ProjectConstants.SEPARATOR + "--" + ProjectConstants.SEPARATOR + "--";
|
|
|
} else {
|
|
|
- sublistName += ProjectConstants.SEPARATOR + sp.getReturnSceneId() + ProjectConstants.SEPARATOR + sp.getSceneType() + ProjectConstants.SEPARATOR + sceneScore + ProjectConstants.SEPARATOR + targetEvaluate + ProjectConstants.SEPARATOR + sp.getScoreExplain();
|
|
|
+ sublistName += ProjectConstants.SEPARATOR + sp.getReturnSceneId() + ProjectConstants.SEPARATOR + sp.getSceneType() + ProjectConstants.SEPARATOR + sceneScore + ProjectConstants.SEPARATOR + targetEvaluate + ProjectConstants.SEPARATOR + sp.getScoreExplain()+ ProjectConstants.SEPARATOR + sp.getTimeActual()+ ProjectConstants.SEPARATOR + sp.getTimeCorrection();
|
|
|
}
|
|
|
String[] split = sublistName.split(ProjectConstants.SEPARATOR);
|
|
|
List<String> strings = new LinkedList<>(Arrays.asList(split));
|
|
@@ -2191,6 +2191,8 @@ public class SimulationProjectServiceImpl implements SimulationProjectService {
|
|
|
sceneScListVo.setSceneScore(list.get(start + 2));
|
|
|
sceneScListVo.setTargetEvaluate(list.get(start + 3));
|
|
|
sceneScListVo.setScoreExplain(list.get(start + 4));
|
|
|
+ sceneScListVo.setTimeActual(list.get(start + 5));
|
|
|
+ sceneScListVo.setTimeCorrection(list.get(start + 6));
|
|
|
sceneScListVo.setRunState(runStateList.get(r));
|
|
|
objects.add(sceneScListVo);
|
|
|
r++;
|