fix: 控制开关,去掉三相电计算逻辑。

This commit is contained in:
tianyongbao
2026-03-29 19:26:43 +08:00
parent cde35aee96
commit c6a5148ac6

View File

@@ -367,10 +367,10 @@ public class DeviceSwitchServiceImpl implements IDeviceSwitchService {
data.setPondInfo(pondInfo);
}
// 如果接线方式为4需要将电压值乘以1.732
if (data.getConnectVoltageType() != null && data.getConnectVoltageType() == 4 && data.getDetectVoltageValue() != null) {
data.setDetectVoltageValue(data.getDetectVoltageValue() * 1.732);
}
// // 如果接线方式为4需要将电压值乘以1.732
// if (data.getConnectVoltageType() != null && data.getConnectVoltageType() == 4 && data.getDetectVoltageValue() != null) {
// data.setDetectVoltageValue(data.getDetectVoltageValue() * 1.732);
// }
return data;
}
@@ -405,7 +405,7 @@ public class DeviceSwitchServiceImpl implements IDeviceSwitchService {
baseMapper.updateById(updateEntity);
// 记录操作日志
log.info("开关操作:{}({})的开关{}修改名称为:{}",
log.info("开关操作:{}({})的开关{}修改名称为:{}",
vo.getDeviceName(), vo.getSerialNum(), oldName, newName);
}
@@ -444,7 +444,7 @@ public class DeviceSwitchServiceImpl implements IDeviceSwitchService {
// 记录操作日志
String operation = isOpen == 1 ? "开启" : "关闭";
log.info("开关操作:{}({})的开关{},设置电流告警开关:{}",
log.info("开关操作:{}({})的开关{},设置电流告警开关:{}",
vo.getDeviceName(), vo.getSerialNum(), vo.getSwitchName(), operation);
}
}
}