[FrontendWebApi] DeviceManageController GetDeviceList 增加 forge_dbid 欄位

This commit is contained in:
dev01 2023-01-03 10:53:51 +08:00
parent dd8dfc4fe9
commit 0eed5c6c89
2 changed files with 2 additions and 1 deletions

View File

@ -279,7 +279,7 @@ namespace FrontendWebApi.ApiControllers
dk.device_normal_point_id, dk.device_normal_point_guid, dk.device_normal_point_col, dk.device_normal_point_value, dk.device_normal_flashing, dk.device_normal_point_name,
dk.device_close_point_id, dk.device_close_point_guid, dk.device_close_point_col, dk.device_close_point_value, dk.device_close_flashing, dk.device_close_point_name,
dk.device_error_point_id, dk.device_error_point_guid, dk.device_error_point_col, dk.device_error_point_value, dk.device_error_flashing, dk.device_error_point_name,
d.room_dbid, d.device_coordinate_3d
d.room_dbid, d.device_coordinate_3d, d.forge_dbid
from device d
left join device_kind dk on d.device_building_tag = dk.device_building_tag and d.device_system_tag = dk.device_system_tag
and d.device_name_tag = dk.device_name_tag

View File

@ -74,6 +74,7 @@ namespace FrontendWebApi.Models
public string device_error_point_value { get; set; }
public string device_error_flashing { get; set; }
public string room_dbid { get; set; }
public string forge_dbid { get; set; }
public List<DeviceNode> Device_nodes { get; set; }
}