Merge branch 'dev' into dev-g

This commit is contained in:
Guoqs
2025-04-21 16:38:51 +08:00
5 changed files with 137 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();
}