新增PCS点位字段配置-电池簇数

This commit is contained in:
zq
2025-12-25 11:42:06 +08:00
parent 18ff0100b9
commit 56613e8f70
2 changed files with 19 additions and 1 deletions

View File

@ -236,6 +236,10 @@ public class EmsPcsData extends BaseEntity
@Excel(name = "4#模块IGBT最高温")
private BigDecimal module4Temp;
/** 电池簇数 */
@Excel(name = "电池簇数")
private Integer clusterNum;
/** 电池簇1PCS有功功率给定 */
@Excel(name = "电池簇1PCS有功功率给定")
private BigDecimal cluster1ActivePower;
@ -792,6 +796,14 @@ public class EmsPcsData extends BaseEntity
return module4Temp;
}
public Integer getClusterNum() {
return clusterNum;
}
public void setClusterNum(Integer clusterNum) {
this.clusterNum = clusterNum;
}
public BigDecimal getCluster1ActivePower() {
return cluster1ActivePower;
}
@ -886,6 +898,7 @@ public class EmsPcsData extends BaseEntity
.append("module2Temp", getModule2Temp())
.append("module3Temp", getModule3Temp())
.append("module4Temp", getModule4Temp())
.append("clusterNum", getClusterNum())
.append("cluster1ActivePower", getCluster1ActivePower())
.append("cluster2ActivePower", getCluster2ActivePower())
.append("cluster3ActivePower", getCluster3ActivePower())