|
@@ -20,7 +20,7 @@ public interface TaskMapper {
|
|
@Result(column = "scene_name", property = "sceneName", jdbcType = JdbcType.VARCHAR),
|
|
@Result(column = "scene_name", property = "sceneName", jdbcType = JdbcType.VARCHAR),
|
|
@Result(column = "scene_type", property = "sceneType", jdbcType = JdbcType.VARCHAR),
|
|
@Result(column = "scene_type", property = "sceneType", jdbcType = JdbcType.VARCHAR),
|
|
@Result(column = "run_state", property = "runState", jdbcType = JdbcType.VARCHAR),
|
|
@Result(column = "run_state", property = "runState", jdbcType = JdbcType.VARCHAR),
|
|
- @Result(column = "run_result", property = "runResult", jdbcType = JdbcType.VARCHAR),
|
|
|
|
|
|
+ @Result(column = "run_result_file_path", property = "runResultFilePath", jdbcType = JdbcType.VARCHAR),
|
|
@Result(column = "max_simulation_time", property = "maxSimulationTime", jdbcType = JdbcType.VARCHAR),
|
|
@Result(column = "max_simulation_time", property = "maxSimulationTime", jdbcType = JdbcType.VARCHAR),
|
|
})
|
|
})
|
|
@Select("select id,\n" +
|
|
@Select("select id,\n" +
|
|
@@ -29,7 +29,7 @@ public interface TaskMapper {
|
|
" scene_name,\n" +
|
|
" scene_name,\n" +
|
|
" scene_type,\n" +
|
|
" scene_type,\n" +
|
|
" run_state,\n" +
|
|
" run_state,\n" +
|
|
- " run_result\n" +
|
|
|
|
|
|
+ " run_result_file_path\n" +
|
|
"from simulation_manual_project_task\n" +
|
|
"from simulation_manual_project_task\n" +
|
|
"where p_id = #{projectId}")
|
|
"where p_id = #{projectId}")
|
|
List<TaskPO> selectTaskListByProjectId(@Param("projectId") String projectId);
|
|
List<TaskPO> selectTaskListByProjectId(@Param("projectId") String projectId);
|