1.河北新增公共连接点预处理算法

This commit is contained in:
2024-08-16 09:30:15 +08:00
parent 813af67b9b
commit f22748ef8f
14 changed files with 639 additions and 418 deletions

View File

@@ -0,0 +1,166 @@
package com.njcn.harmonic.pojo.po.upload;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.github.jeffreyning.mybatisplus.anno.MppMultiId;
import com.njcn.db.bo.BaseEntity;
import java.io.Serializable;
import lombok.Getter;
import lombok.Setter;
/**
* <p>
* 公共连接点母线电能质量统计
* </p>
*
* @author xy
* @since 2024-08-15
*/
@Getter
@Setter
@TableName("r_upload_comm_point_bus")
public class RUploadCommPointBus implements Serializable {
private static final long serialVersionUID = 1L;
/**
* uuid
*/
private String objId;
/**
* 统计类型
*/
@MppMultiId
private String statisticalType;
/**
* 统计时间
*/
@MppMultiId
private String statisticalDate;
/**
* 母线id
*/
@MppMultiId
private String busId;
/**
* 母线名称
*/
private String busName;
/**
* 所属省份,取ISC平台上的组织id
*/
private String provinceOrg;
private String provinceOrgName;
/**
* 所属地市,取ISC平台上的组织id
*/
private String cityOrg;
private String cityOrgName;
/**
* 运维单位
*/
private String maintOrg;
private String maintOrgName;
/**
* 站房类型
*/
private String stationType;
/**
* 所属电站
*/
private String stationId;
/**
* 所属电站名称
*/
private String stationName;
private String stationVoltageLevel;
/**
* 母线电压等级
*/
private String busVoltageLevel;
/**
* 总超标天数
*/
private Integer ovDays;
/**
* 电压有效值-平均值
*/
private Double avgVrms;
/**
* 电压有效值-95%概率大值
*/
private Double gVrms;
/**
* 谐波电压-超标天数
*/
private Integer harmVOvDays;
/**
* 谐波电压-超标时长(分钟)
*/
private Integer harmVOvDuration;
/**
* 三相不平衡-超标天数
*/
private Integer vunbanOvDays;
/**
* 三相不平衡-超标时长(分钟)
*/
private Integer vunbanOvDuration;
/**
* 长时闪变-超标天数
*/
private Integer pltOvDays;
/**
* 长时闪变-超标时长(分钟)
*/
private Integer pltOvDuration;
/**
* 最优监测点编号
*/
private String monitorId;
/**
* 关联监测点集合数
*/
private String monitorIds;
/**
* 数据来源
*/
private String dataSource;
@TableField(exist = false)
private String cnMonitorId;
}