1.pms谐波模块保留俩位小数

2.冀北分布式光伏概览代码提交
This commit is contained in:
wr
2023-05-11 09:26:52 +08:00
parent 2e71088c8d
commit 0e4bdb62fd
28 changed files with 688 additions and 92 deletions

View File

@@ -123,13 +123,13 @@ public class PwPmsMonitorDTO implements Serializable {
/**
* 关联的监测终端编号(外键)
*/
@ApiModelProperty(name = "terminalId", value = "更新时间")
@ApiModelProperty(name = "terminalId", value = "关联的监测终端编号")
private String terminalId;
/**
* 监测终端接线方式(字典)
*/
@ApiModelProperty(name = "terminalWiringMethod", value = "更新时间")
@ApiModelProperty(name = "terminalWiringMethod", value = "监测终端接线方式")
private String terminalWiringMethod;
}

View File

@@ -0,0 +1,55 @@
package com.njcn.device.pms.pojo.vo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
/**
* @author wr
* @description
* @date 2023/5/8 14:58
*/
@Data
public class PVCapacity implements Serializable {
private static final long serialVersionUID = 1L;
@ApiModelProperty(name = "sumCount", value = "光伏总容量")
private Float sumCount;
@ApiModelProperty(name = "sumOrgCount", value = "已安装容量")
private Float sumOrgCount;
@ApiModelProperty(name = "sumOrgTheYear", value = "当年接入容量")
private Float sumOrgTheYear;
@Data
public static class PVCapacityCount{
@ApiModelProperty(name = "num1", value = "0-25")
private Integer num1;
@ApiModelProperty(name = "num2;", value = "25-50")
private Integer num2;
@ApiModelProperty(name = "num3", value = "50-75")
private Integer num3;
@ApiModelProperty(name = "num4", value = "75-100")
private Integer num4;
@ApiModelProperty(name = "num5", value = ">100")
private Integer num5;
}
@Data
public static class Absorptive{
@ApiModelProperty(name = "org", value = "部门")
private String org;
@ApiModelProperty(name = "capacity;", value = "已安装容量")
private Double capacity;
@ApiModelProperty(name = "consumption", value = "可安装容量")
private Double consumption;
}
}