敏感用户污染值统计

This commit is contained in:
xy
2025-12-13 20:33:08 +08:00
parent 3a97f01383
commit 12cfecac7e
12 changed files with 235 additions and 9 deletions

View File

@@ -9,6 +9,12 @@ import java.io.Serializable;
@Data
public class PowerFlagPollution implements Serializable {
/**
* 变电站名称
*/
@Excel(name = "变电站名称", width = 35, replace = "/_null")
@ApiModelProperty("变电站名称")
private String subName;
/**
* 监测点名称

View File

@@ -38,6 +38,10 @@ public class SubstationPollution implements Serializable {
@ApiModelProperty("电站谐波污染值")
private String subVStationValue;
@Excel(name = "项目名称", width = 25, needMerge = true)
@ApiModelProperty("项目名称")
private String projectName;
/**
* 电网侧&非电网侧

View File

@@ -36,4 +36,10 @@ public class StatSubstationBizBaseParam extends StatisticsBizBaseParam {
@ApiModelProperty("电网侧标识")
@Range(min = 0, max = 2, message = "电网侧标识" + ValidMessage.PARAM_FORMAT_ERROR)
private Integer powerFlag;
@ApiModelProperty("部门id")
private String deptId;
@ApiModelProperty("搜索值")
private String searchValue;
}