提交
This commit is contained in:
@@ -0,0 +1,103 @@
|
||||
package com.njcn.prepare.harmonic.pojo.po;
|
||||
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.github.jeffreyning.mybatisplus.anno.MppMultiId;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
*
|
||||
* Description:
|
||||
* Date: 2023/10/7 14:14【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
@Data
|
||||
@TableName(value = "r_dn_operating_index_m")
|
||||
public class RDnOperatingIndexMPO {
|
||||
/**
|
||||
* 单位ID
|
||||
*/
|
||||
@MppMultiId(value = "org_no")
|
||||
private String orgNo;
|
||||
|
||||
/**
|
||||
* 时间
|
||||
*/
|
||||
@MppMultiId(value = "data_date")
|
||||
private Date dataDate;
|
||||
|
||||
/**
|
||||
* 监测点类型
|
||||
*/
|
||||
@MppMultiId(value = "measurement_point_type")
|
||||
private String measurementPointType;
|
||||
|
||||
/**
|
||||
* 在运监测点数
|
||||
*/
|
||||
@TableField(value = "measurement_run_points")
|
||||
private Integer measurementRunPoints;
|
||||
|
||||
/**
|
||||
* 在线监测点数
|
||||
*/
|
||||
@TableField(value = "transit_measurement_points")
|
||||
private Integer transitMeasurementPoints;
|
||||
|
||||
/**
|
||||
* 有效接入监测点数量
|
||||
*/
|
||||
@TableField(value = "effective_access_measurement_count")
|
||||
private Integer effectiveAccessMeasurementCount;
|
||||
|
||||
/**
|
||||
* 有效接入率:有效接入监测点数量/在运监测点数
|
||||
*/
|
||||
@TableField(value = "effective_access_rate")
|
||||
private Double effectiveAccessRate;
|
||||
|
||||
/**
|
||||
* 应设点数
|
||||
*/
|
||||
@TableField(value = "should_count")
|
||||
private Integer shouldCount;
|
||||
|
||||
/**
|
||||
* 应设点覆盖率
|
||||
*/
|
||||
@TableField(value = "should_point_coverage")
|
||||
private Integer shouldPointCoverage;
|
||||
|
||||
/**
|
||||
* 数据完整率
|
||||
*/
|
||||
@TableField(value = "data_integrity_rate")
|
||||
private Double dataIntegrityRate;
|
||||
|
||||
/**
|
||||
* 数据准确率
|
||||
*/
|
||||
@TableField(value = "data_right_rate")
|
||||
private Double dataRightRate;
|
||||
|
||||
/**
|
||||
* 指标完整率
|
||||
*/
|
||||
@TableField(value = "index_integrity_rate")
|
||||
private Double indexIntegrityRate;
|
||||
|
||||
/**
|
||||
* 数据是否异常(0:正常 1:异常)
|
||||
*/
|
||||
@TableField(value = "is_unusual")
|
||||
private Integer isUnusual;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
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.util.Date;
|
||||
|
||||
/**
|
||||
*
|
||||
* Description:
|
||||
* Date: 2023/10/7 14:14【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
@Data
|
||||
@TableName(value = "r_dn_operating_q")
|
||||
public class RDnOperatingQPO {
|
||||
/**
|
||||
* 单位ID
|
||||
*/
|
||||
@MppMultiId(value = "org_no")
|
||||
private String orgNo;
|
||||
|
||||
/**
|
||||
* 时间
|
||||
*/
|
||||
@MppMultiId(value = "data_date")
|
||||
private Date dataDate;
|
||||
|
||||
/**
|
||||
* 监测点类型
|
||||
*/
|
||||
@MppMultiId(value = "measurement_point_type")
|
||||
private String measurementPointType;
|
||||
|
||||
/**
|
||||
* 在运监测点数
|
||||
*/
|
||||
@TableField(value = "measurement_run_points")
|
||||
private Integer measurementRunPoints;
|
||||
|
||||
/**
|
||||
* 在线监测点数
|
||||
*/
|
||||
@TableField(value = "transit_measurement_points")
|
||||
private Integer transitMeasurementPoints;
|
||||
|
||||
/**
|
||||
* 有效接入监测点数量
|
||||
*/
|
||||
@TableField(value = "effective_access_measurement_count")
|
||||
private Integer effectiveAccessMeasurementCount;
|
||||
|
||||
/**
|
||||
* 有效接入率
|
||||
*/
|
||||
@TableField(value = "effective_access_rate")
|
||||
private Double effectiveAccessRate;
|
||||
|
||||
/**
|
||||
* 应设点数
|
||||
*/
|
||||
@TableField(value = "should_count")
|
||||
private Integer shouldCount;
|
||||
|
||||
/**
|
||||
* 应设点覆盖率
|
||||
*/
|
||||
@TableField(value = "should_point_coverage")
|
||||
private Integer shouldPointCoverage;
|
||||
|
||||
/**
|
||||
* 数据完整率
|
||||
*/
|
||||
@TableField(value = "data_integrity_rate")
|
||||
private Double dataIntegrityRate;
|
||||
|
||||
/**
|
||||
* 数据准确率
|
||||
*/
|
||||
@TableField(value = "data_right_rate")
|
||||
private Double dataRightRate;
|
||||
|
||||
/**
|
||||
* 指标完整率
|
||||
*/
|
||||
@TableField(value = "index_integrity_rate")
|
||||
private Double indexIntegrityRate;
|
||||
|
||||
/**
|
||||
* 数据是否异常(0:正常 1:异常)
|
||||
*/
|
||||
@TableField(value = "is_unusual")
|
||||
private Integer isUnusual;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
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.util.Date;
|
||||
|
||||
/**
|
||||
*
|
||||
* Description:
|
||||
* Date: 2023/10/7 14:14【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
@Data
|
||||
@TableName(value = "r_dn_operating_y")
|
||||
public class RDnOperatingYPO {
|
||||
/**
|
||||
* 单位ID
|
||||
*/
|
||||
@MppMultiId(value = "org_no")
|
||||
private String orgNo;
|
||||
|
||||
/**
|
||||
* 时间
|
||||
*/
|
||||
@MppMultiId(value = "data_date")
|
||||
private Date dataDate;
|
||||
|
||||
/**
|
||||
* 监测点类型
|
||||
*/
|
||||
@MppMultiId(value = "measurement_point_type")
|
||||
private String measurementPointType;
|
||||
|
||||
/**
|
||||
* 在运监测点数
|
||||
*/
|
||||
@TableField(value = "measurement_run_points")
|
||||
private Integer measurementRunPoints;
|
||||
|
||||
/**
|
||||
* 在线监测点数
|
||||
*/
|
||||
@TableField(value = "transit_measurement_points")
|
||||
private Integer transitMeasurementPoints;
|
||||
|
||||
/**
|
||||
* 有效接入监测点数量
|
||||
*/
|
||||
@TableField(value = "effective_access_measurement_count")
|
||||
private Integer effectiveAccessMeasurementCount;
|
||||
|
||||
/**
|
||||
* 有效接入率
|
||||
*/
|
||||
@TableField(value = "effective_access_rate")
|
||||
private Double effectiveAccessRate;
|
||||
|
||||
/**
|
||||
* 应设点数
|
||||
*/
|
||||
@TableField(value = "should_count")
|
||||
private Integer shouldCount;
|
||||
|
||||
/**
|
||||
* 应设点覆盖率
|
||||
*/
|
||||
@TableField(value = "should_point_coverage")
|
||||
private Integer shouldPointCoverage;
|
||||
|
||||
/**
|
||||
* 数据完整率
|
||||
*/
|
||||
@TableField(value = "data_integrity_rate")
|
||||
private Double dataIntegrityRate;
|
||||
|
||||
/**
|
||||
* 数据准确率
|
||||
*/
|
||||
@TableField(value = "data_right_rate")
|
||||
private Double dataRightRate;
|
||||
|
||||
/**
|
||||
* 指标完整率
|
||||
*/
|
||||
@TableField(value = "index_integrity_rate")
|
||||
private Double indexIntegrityRate;
|
||||
|
||||
/**
|
||||
* 数据是否异常(0:正常 1:异常)
|
||||
*/
|
||||
@TableField(value = "is_unusual")
|
||||
private Integer isUnusual;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
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.util.Date;
|
||||
|
||||
/**
|
||||
*
|
||||
* Description:
|
||||
* Date: 2023/10/7 14:08【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
@Data
|
||||
@TableName(value = "r_operating_index_m")
|
||||
public class ROperatingIndexMPO {
|
||||
/**
|
||||
* 单位ID
|
||||
*/
|
||||
@MppMultiId(value = "org_no")
|
||||
private String orgNo;
|
||||
|
||||
/**
|
||||
* 时间
|
||||
*/
|
||||
@MppMultiId(value = "data_date")
|
||||
private Date dataDate;
|
||||
|
||||
/**
|
||||
* 在运监测点数
|
||||
*/
|
||||
@TableField(value = "measurement_run_points")
|
||||
private Integer measurementRunPoints;
|
||||
|
||||
/**
|
||||
* 在线监测点数
|
||||
*/
|
||||
@TableField(value = "transit_measurement_points")
|
||||
private Integer transitMeasurementPoints;
|
||||
|
||||
/**
|
||||
* 有效接入监测点数量
|
||||
*/
|
||||
@TableField(value = "effective_access_measurement_count")
|
||||
private Integer effectiveAccessMeasurementCount;
|
||||
|
||||
/**
|
||||
* 监测终端数
|
||||
*/
|
||||
@TableField(value = "online_measurement_points")
|
||||
private Integer onlineMeasurementPoints;
|
||||
|
||||
/**
|
||||
* 在线终端数
|
||||
*/
|
||||
@TableField(value = "online_measurement_count")
|
||||
private Integer onlineMeasurementCount;
|
||||
|
||||
/**
|
||||
* 应设点数
|
||||
*/
|
||||
@TableField(value = "should_count")
|
||||
private Integer shouldCount;
|
||||
|
||||
/**
|
||||
* 应设点覆盖率
|
||||
*/
|
||||
@TableField(value = "should_point_coverage")
|
||||
private Double shouldPointCoverage;
|
||||
|
||||
/**
|
||||
* 数据完整率
|
||||
*/
|
||||
@TableField(value = "data_integrity_rate")
|
||||
private Double dataIntegrityRate;
|
||||
|
||||
/**
|
||||
* 数据准确率
|
||||
*/
|
||||
@TableField(value = "data_right_rate")
|
||||
private Double dataRightRate;
|
||||
|
||||
/**
|
||||
* 指标完整率
|
||||
*/
|
||||
@TableField(value = "index_integrity_rate")
|
||||
private Double indexIntegrityRate;
|
||||
|
||||
/**
|
||||
* 数据否异常(0:正常 1:异常)
|
||||
*/
|
||||
@TableField(value = "is_unusual")
|
||||
private Integer isUnusual;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
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.util.Date;
|
||||
|
||||
/**
|
||||
*
|
||||
* Description:
|
||||
* Date: 2023/10/7 14:15【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
@Data
|
||||
@TableName(value = "r_operating_index_q")
|
||||
public class ROperatingIndexQPO {
|
||||
/**
|
||||
* 单位ID
|
||||
*/
|
||||
@MppMultiId(value = "org_no")
|
||||
private String orgNo;
|
||||
|
||||
/**
|
||||
* 时间
|
||||
*/
|
||||
@MppMultiId(value = "data_date")
|
||||
private Date dataDate;
|
||||
|
||||
/**
|
||||
* 在运监测点数
|
||||
*/
|
||||
@TableField(value = "measurement_run_points")
|
||||
private Integer measurementRunPoints;
|
||||
|
||||
/**
|
||||
* 在线监测点数
|
||||
*/
|
||||
@TableField(value = "transit_measurement_points")
|
||||
private Integer transitMeasurementPoints;
|
||||
|
||||
/**
|
||||
* 有效接入监测点数量
|
||||
*/
|
||||
@TableField(value = "effective_access_measurement_count")
|
||||
private Integer effectiveAccessMeasurementCount;
|
||||
|
||||
/**
|
||||
* 监测终端数
|
||||
*/
|
||||
@TableField(value = "online_measurement_points")
|
||||
private Integer onlineMeasurementPoints;
|
||||
|
||||
/**
|
||||
* 在线终端数
|
||||
*/
|
||||
@TableField(value = "online_measurement_count")
|
||||
private Integer onlineMeasurementCount;
|
||||
|
||||
/**
|
||||
* 应设点数
|
||||
*/
|
||||
@TableField(value = "should_count")
|
||||
private Integer shouldCount;
|
||||
|
||||
/**
|
||||
* 应设点覆盖率
|
||||
*/
|
||||
@TableField(value = "should_point_coverage")
|
||||
private Double shouldPointCoverage;
|
||||
|
||||
/**
|
||||
* 数据完整率
|
||||
*/
|
||||
@TableField(value = "data_integrity_rate")
|
||||
private Double dataIntegrityRate;
|
||||
|
||||
/**
|
||||
* 数据准确率
|
||||
*/
|
||||
@TableField(value = "data_right_rate")
|
||||
private Double dataRightRate;
|
||||
|
||||
/**
|
||||
* 指标完整率
|
||||
*/
|
||||
@TableField(value = "index_integrity_rate")
|
||||
private Double indexIntegrityRate;
|
||||
|
||||
/**
|
||||
* 数据是否异常(0:正常 1:异常)
|
||||
*/
|
||||
@TableField(value = "is_unusual")
|
||||
private Integer isUnusual;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
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.util.Date;
|
||||
|
||||
/**
|
||||
*
|
||||
* Description:
|
||||
* Date: 2023/10/7 14:15【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
@Data
|
||||
@TableName(value = "r_operating_index_y")
|
||||
public class ROperatingIndexYPO {
|
||||
/**
|
||||
* 单位ID
|
||||
*/
|
||||
@MppMultiId(value = "org_no")
|
||||
private String orgNo;
|
||||
|
||||
/**
|
||||
* 时间
|
||||
*/
|
||||
@MppMultiId(value = "data_date")
|
||||
private Date dataDate;
|
||||
|
||||
/**
|
||||
* 在运监测点数
|
||||
*/
|
||||
@TableField(value = "measurement_run_points")
|
||||
private Integer measurementRunPoints;
|
||||
|
||||
/**
|
||||
* 在线监测点数
|
||||
*/
|
||||
@TableField(value = "transit_measurement_points")
|
||||
private Integer transitMeasurementPoints;
|
||||
|
||||
/**
|
||||
* 有效接入监测点数量
|
||||
*/
|
||||
@TableField(value = "effective_access_measurement_count")
|
||||
private Integer effectiveAccessMeasurementCount;
|
||||
|
||||
/**
|
||||
* 监测终端数
|
||||
*/
|
||||
@TableField(value = "online_measurement_points")
|
||||
private Integer onlineMeasurementPoints;
|
||||
|
||||
/**
|
||||
* 在线终端数
|
||||
*/
|
||||
@TableField(value = "online_measurement_count")
|
||||
private Integer onlineMeasurementCount;
|
||||
|
||||
/**
|
||||
* 应设点数
|
||||
*/
|
||||
@TableField(value = "should_count")
|
||||
private Integer shouldCount;
|
||||
|
||||
/**
|
||||
* 应设点覆盖率
|
||||
*/
|
||||
@TableField(value = "should_point_coverage")
|
||||
private Double shouldPointCoverage;
|
||||
|
||||
/**
|
||||
* 数据完整率
|
||||
*/
|
||||
@TableField(value = "data_integrity_rate")
|
||||
private Double dataIntegrityRate;
|
||||
|
||||
/**
|
||||
* 数据准确率
|
||||
*/
|
||||
@TableField(value = "data_right_rate")
|
||||
private Double dataRightRate;
|
||||
|
||||
/**
|
||||
* 指标完整率
|
||||
*/
|
||||
@TableField(value = "index_integrity_rate")
|
||||
private Double indexIntegrityRate;
|
||||
|
||||
/**
|
||||
* 数据是否异常(0:正常 1:异常)
|
||||
*/
|
||||
@TableField(value = "is_unusual")
|
||||
private Integer isUnusual;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user