zbj//1.暂态指标统计(电压等级) 月 算法
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user