修复子设备状态设置错误

This commit is contained in:
zhou-hao 2021-10-12 15:51:19 +08:00
parent 182de36567
commit cee26b5c1c
1 changed files with 1 additions and 1 deletions

View File

@ -173,6 +173,6 @@ public class DeviceInstanceEntity extends GenericEntity<String> implements Recor
if (this.features == null) {
return false;
}
return EnumDict.in(feature, DeviceFeature.values());
return EnumDict.in(feature, this.features);
}
}