添加额定功率

This commit is contained in:
2025-03-26 15:16:18 +08:00
parent bfc8c6dca0
commit d2ebf3fca8
4 changed files with 19 additions and 1 deletions

View File

@@ -122,6 +122,9 @@ public class UserReportParam {
@ApiModelProperty(value = "纬度")
private BigDecimal latitude;
@ApiModelProperty(value = "额定容量")
private Double ratePower;
/**
* 预测评估结论
*/

View File

@@ -133,7 +133,10 @@ public class UserReportPO extends BaseEntity {
*/
private String stationId;
/**
* 额定容量
*/
private Double ratePower;
/**
* 经度

View File

@@ -94,10 +94,21 @@ public class UserReportVO {
* 变电站
*/
@ApiModelProperty(value = "变电站")
@Deprecated
private String substation;
@ApiModelProperty(value = "变电站id")
private String stationId;
/**
* 额定容量
*/
@ApiModelProperty(value = "额定容量")
private Double ratePower;
@ApiModelProperty(value = "经度")
private BigDecimal longitude;