微调污染值

This commit is contained in:
wr
2025-09-05 15:08:28 +08:00
parent 22950c6b35
commit 24b18ff3f2
3 changed files with 15 additions and 14 deletions

View File

@@ -84,54 +84,54 @@ public class LinePollution implements Serializable {
/**
* 统计间隔
*/
@Excel(name = "统计间隔", width = 30)
@Excel(name = "统计间隔",type = 10, width = 30)
private Integer interval;
/**
* 新增
* 在线率
*/
@Excel(name = "在线率(%)", width = 30)
private Double onlineRate;
@Excel(name = "在线率(%)",type = 10, width = 30)
private Float onlineRate;
/**
* 新增
* 完整性
*/
@Excel(name = "完整率(%)", width = 30)
@Excel(name = "完整率(%)",type = 10, width = 30)
private Double integrity;
/**
* 谐波电压污染值
*/
@Excel(name = "谐波电压污染值", width = 20)
@Excel(name = "谐波电压污染值",type = 10, width = 20)
private Double vHarmonicValue;
/**
* 谐波电压污染值
*/
@Excel(name = "谐波电流污染值", width = 20)
@Excel(name = "谐波电流污染值",type = 10, width = 20)
private Double iHarmonicValue;
/**
* 暂升次数 1.1~1.8
* 10ms ~ 1min
*/
@Excel(name = "暂升次数(次)", width = 20)
@Excel(name = "暂升次数(次)",type = 10, width = 20)
private Integer upCounts;
/**
* 暂降次数 0.1~0.9
* 10ms ~ 1min
*/
@Excel(name = "电压暂降(次)", width = 20)
@Excel(name = "电压暂降(次)",type = 10, width = 20)
private Integer downCounts;
/**
* 短时中断 0~0.1
* 10ms ~ 1min
*/
@Excel(name = "短时中断(次)", width = 20)
@Excel(name = "短时中断(次)",type = 10, width = 20)
private Integer breakCounts;
@Excel(name = "是否关联敏感用户", width = 30, replace = "/_null")