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

This commit is contained in:
zhangbaojian
2023-06-09 16:22:15 +08:00
parent 389ab0ec99
commit 0bb0c9b189
10 changed files with 783 additions and 6 deletions

View File

@@ -0,0 +1,46 @@
package com.njcn.prepare.harmonic.pojo.po;
import lombok.Data;
import java.util.Date;
/**
*
* zbj
*/
/**
* 监测点暂态指标超标明细日表
*/
@Data
public class RMpEventDetailDNewPO {
/**
* 监测点ID
*/
private String measurementPointId;
/**
* 时间
*/
private Date dataDate;
/**
* 电压暂升发生次数
*/
private Integer swellTimes;
/**
* 电压暂降发生次数
*/
private Integer sagTimes;
/**
* 短时中断发生次数
*/
private Integer interruptTimes;
/**
* 电压等级
*/
private String voltage;
}

View File

@@ -0,0 +1,49 @@
package com.njcn.prepare.harmonic.pojo.po;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.github.jeffreyning.mybatisplus.anno.MppMultiId;
import lombok.Data;
import java.time.LocalDate;
/**
* <p>
*
* </p>
*
* @author zbj
* @since 2023-06-06
*/
@Data
@TableName("r_stat_event_voltage_d")
public class RStatEventVoltageDPO {
@MppMultiId(value = "org_no")
private String orgNo;
@MppMultiId(value = "data_date")
private LocalDate dataDate;
@MppMultiId(value = "measurement_type_class")
private String measurementTypeClass;
@MppMultiId(value = "event_type")
private String eventType;
@MppMultiId(value = "voltage_type")
private String voltageType;
@TableField(value = "event_measurement")
private Integer eventMeasurement;
@TableField(value = "event_measurement_ratio")
private Float eventMeasurementRatio;
@TableField(value = "event_count")
private Integer eventCount;
@MppMultiId(value = "data_type")
private String dataType;
}