zbj//1.暂态指标统计(电压等级) 月 算法

This commit is contained in:
zhangbaojian
2023-06-12 10:33:49 +08:00
parent 0bb0c9b189
commit d760da9820
6 changed files with 313 additions and 99 deletions

View File

@@ -0,0 +1,51 @@
package com.njcn.harmonic.pojo.po;
import lombok.Data;
import java.util.Date;
/**
*
* Description:
* 接口文档访问地址http://serverIP:port/swagger-ui.html
* Date: 2022/12/28 14:58【需求编号】
*
* @author clam
* @version V1.0.0
*/
/**
* 监测点暂态指标超标明细月表
*/
@Data
public class RMpEventDetailMNewPO {
/**
* 监测点ID
*/
private String measurementPointId;
/**
* 时间
*/
private Date dataDate;
/**
* 电压暂升发生次数
*/
private Integer swellTimes;
/**
* 电压暂降发生次数
*/
private Integer sagTimes;
/**
* 短时中断发生次数
*/
private Integer interruptTimes;
/**
* 电压等级
*/
private String voltage;
}