From 53c0d252e83694aa38b4d3dc8fb5a30ba99bb588 Mon Sep 17 00:00:00 2001 From: dev02 Date: Thu, 7 Mar 2024 15:31:49 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=BE=8C=E7=AB=AF]=20=E8=AA=BF=E6=95=B4?= =?UTF-8?q?=E5=88=A4=E6=96=B7is=5Flink=20=3D=201?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Backend/Controllers/DeviceManageController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Backend/Controllers/DeviceManageController.cs b/Backend/Controllers/DeviceManageController.cs index b96ea21..3692b43 100644 --- a/Backend/Controllers/DeviceManageController.cs +++ b/Backend/Controllers/DeviceManageController.cs @@ -81,7 +81,7 @@ namespace Backend.Controllers f.priority AS fPriority FROM sub_system_floor ssf JOIN floor f ON ssf.floor_tag = f.full_name AND ssf.building_tag = f.building_tag AND f.deleted = 0 - WHERE ssf.deleted = 0 + WHERE ssf.deleted = 0 and ssf.is_link = 1 ORDER BY f.priority, f.created_at "; var subSystemFloorRawDatas = await backendRepository.GetAllAsync(sub_sql);