update 电池算法应用Service

This commit is contained in:
Lemon
2025-04-21 10:07:42 +08:00
parent 9d2e018d99
commit 6e8ccb131d
5 changed files with 124 additions and 7 deletions

View File

@@ -143,6 +143,12 @@ public class ChargeAlgorithmRecord extends BaseEntity {
@Excel(name = "故障体系指标")
private String failureMetrics;
/**
* 性能体系指标
*/
@Excel(name = "性能体系指标")
private String performanceMetrics;
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.JSON_STYLE)
@@ -167,6 +173,7 @@ public class ChargeAlgorithmRecord extends BaseEntity {
.append("maxAllowableElectricityAlarm", getMaxAllowableElectricityAlarm())
.append("securitySystemLevel", getSecuritySystemLevel())
.append("failureMetrics", getFailureMetrics())
.append("performanceMetrics", getPerformanceMetrics())
.append("createTime", getCreateTime())
.toString();
}