|
@@ -12,9 +12,9 @@ import java.util.List;
|
|
@Mapper
|
|
@Mapper
|
|
public interface MultiSimulationProjectResultMapper {
|
|
public interface MultiSimulationProjectResultMapper {
|
|
@Select("<script>" +
|
|
@Select("<script>" +
|
|
- "select id,scene_id,abnormal_type,abnormal_time from multi_simulation_project_result where deleted = 0 " +
|
|
|
|
|
|
+ "select id,scene_id,abnormal_type,abnormal_time_description from multi_simulation_project_result where deleted = 0 " +
|
|
"and scene_id = #{sceneId}" +
|
|
"and scene_id = #{sceneId}" +
|
|
- "order by abnormal_time,create_time desc" +
|
|
|
|
|
|
+ "order by create_time desc" +
|
|
"</script>")
|
|
"</script>")
|
|
List<MultiSimulationProjectResultVO> selectProjectResultList(MultiSimulationProjectResultParam param);
|
|
List<MultiSimulationProjectResultVO> selectProjectResultList(MultiSimulationProjectResultParam param);
|
|
|
|
|