fix: sort job monitoring by storage time

This commit is contained in:
2026-07-21 18:25:53 +08:00
parent 17533c381a
commit bb56e067a1

View File

@@ -12,7 +12,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="storageResult != null and storageResult != ''">
and STORAGE_RESULT like CONCAT('%',#{storageResult},'%')
</if>
ORDER BY CREATE_TIME DESC
ORDER BY STORAGE_DATE DESC, DETECTION_ID DESC
</select>
</mapper>