首页,风机列表中查询实时数据加上 风机锁定参数

This commit is contained in:
houwei 2024-11-04 09:16:31 +08:00
parent 8068b7ab77
commit 5263c5981d
2 changed files with 6 additions and 0 deletions

View File

@ -91,6 +91,9 @@ public class WindTurbinesPageService {
attributesList.add("iyplevel"); attributesList.add("iyplevel");
//电网故障停机 //电网故障停机
attributesList.add("gridlostdetected"); attributesList.add("gridlostdetected");
//是否锁定
attributesList.add("Locked");
for (SysEquipmentVo item : sysEquipmentVos) { for (SysEquipmentVo item : sysEquipmentVos) {
//构建查询属性参数 //构建查询属性参数
SnapshotValueQueryParam snapshotValueQueryParam = new SnapshotValueQueryParam(); SnapshotValueQueryParam snapshotValueQueryParam = new SnapshotValueQueryParam();

View File

@ -67,6 +67,9 @@ public class HomeServiceImpl implements HomeService {
attributesList.add("igenpower"); attributesList.add("igenpower");
//日发电量(kwh) //日发电量(kwh)
attributesList.add("ikwhthisday"); attributesList.add("ikwhthisday");
//是否锁定
attributesList.add("Locked");
for (SysEquipmentVo item : sysEquipmentVos) { for (SysEquipmentVo item : sysEquipmentVos) {
//构建查询属性参数 //构建查询属性参数
SnapshotValueQueryParam snapshotValueQueryParam = new SnapshotValueQueryParam(); SnapshotValueQueryParam snapshotValueQueryParam = new SnapshotValueQueryParam();