|
@@ -80,4 +80,25 @@ public interface SimulationManualProjectTaskMapper {
|
|
"where is_deleted = '0'\n" +
|
|
"where is_deleted = '0'\n" +
|
|
" and p_id = #{id}\n")
|
|
" and p_id = #{id}\n")
|
|
List<String> selectRunResultPathByProjectId(SimulationManualProjectParam simulationManualProjectParam);
|
|
List<String> selectRunResultPathByProjectId(SimulationManualProjectParam simulationManualProjectParam);
|
|
|
|
+
|
|
|
|
+ @Select("select run_result_file_path from simulation_manual_project_task where p_id = 'a6c502fcb3994788910bac9d352f908f' and scene_id = (select CASE\n" +
|
|
|
|
+ " WHEN scene_natural_ids IS NOT NULL AND scene_natural_ids <> ''\n" +
|
|
|
|
+ " THEN scene_natural_ids\n" +
|
|
|
|
+ " WHEN scene_traffic_ids IS NOT NULL AND scene_traffic_ids <> ''\n" +
|
|
|
|
+ " THEN scene_traffic_ids\n" +
|
|
|
|
+ " WHEN scene_statue_ids IS NOT NULL AND scene_statue_ids <> ''\n" +
|
|
|
|
+ " THEN scene_statue_ids\n" +
|
|
|
|
+ " WHEN scene_generalization_ids IS NOT NULL AND scene_generalization_ids <> ''\n" +
|
|
|
|
+ " THEN scene_generalization_ids\n" +
|
|
|
|
+ " END AS scene_id\n" +
|
|
|
|
+ " from scene_package_sublist\n" +
|
|
|
|
+ " where\n" +
|
|
|
|
+ " root_id =\n" +
|
|
|
|
+ " (select scene\n" +
|
|
|
|
+ " from simulation_manual_project\n" +
|
|
|
|
+ " where id = 'a6c502fcb3994788910bac9d352f908f')\n" +
|
|
|
|
+ " and sublist_name like '%B%')")
|
|
|
|
+ List<String> selectRunResultPathByProjectIdV202403(SimulationManualProjectParam simulationManualProjectParam);
|
|
|
|
+
|
|
|
|
+
|
|
}
|
|
}
|