报表添加接线方式、一二次值判断

This commit is contained in:
xy
2026-01-28 08:44:45 +08:00
parent 736b0a6e60
commit 05ef7028c4
19 changed files with 413 additions and 55 deletions

View File

@@ -36,4 +36,8 @@ public class SensitiveUserTrendDataQueryParam {
@ApiModelProperty(value = "频次2-50")
private String frequency;
//采用这个频次,上面那个频次用于多指标筛选
@ApiModelProperty(value = "频次2-50")
private Integer harmonicCount;
}

View File

@@ -45,6 +45,12 @@ public class ReportTemplateParam {
@ApiModelProperty(name = "reportForm",value = "报表类型",required = true)
private String reportForm;
@ApiModelProperty(name = "wiringMethod",value = "接线方式",required = true)
private String wiringMethod;
@ApiModelProperty(name = "sort",value = "排序",required = true)
private Integer sort;
@Data
@EqualsAndHashCode(callSuper = true)

View File

@@ -22,8 +22,10 @@ public class TotalLimitStatisticsDetailsVO {
private Integer allTime;
@ApiModelProperty(value = "闪变越限次数")
private Integer flickerOvertime;
private Integer flickerAllTime;
@ApiModelProperty(value = "闪变越限")
private double flickerOvertime;
@ApiModelProperty(value = "频率偏差越限")
private double freqDevOvertime;