fix: 修复使用 postgres 数据库时设备列表查询可能乱序的问题

This commit is contained in:
xiaoQQya
2025-04-10 14:11:04 +08:00
parent 481609ef72
commit 40a95c70e8

View File

@@ -381,7 +381,7 @@ public interface DeviceMapper {
" OR device_id LIKE concat('%',#{query},'%') escape '/' " +
" OR ip LIKE concat('%',#{query},'%') escape '/')" +
"</if> " +
" order by create_time desc "+
" order by create_time desc, device_id " +
" </script>")
List<Device> getDeviceList(@Param("dataType") Integer dataType, @Param("query") String query, @Param("status") Boolean status);