feiyu02
2023-11-15 45fdeee912088efbd07a748a011682c6c6d1ce51
src/main/java/com/flightfeather/monitor/pojo/RiskValuePojo.kt
@@ -1,52 +1,10 @@
package com.flightfeather.monitor.pojo
import java.util.*
import com.flightfeather.monitor.domain.ds1.entity.RiskValue
class RiskValuePojo {
    var id: Int? = null
    /**
     * 监测点编号
     */
    var mnCode: String? = null
class RiskValuePojo : RiskValue() {
    /**
     * 监测点名称
     */
    var name: String? = null
    /**
     * 时间
     */
    var lst: Date? = null
    /**
     * 在线率风险值
     */
    var onlineRisk: Double? = null
    /**
     * 有效率风险值
     */
    var validRisk: Double? = null
    /**
     * 超标风险值
     */
    var exceedRisk: Double? = null
    /**
     * 异常类型聚集度
     */
    var exceptionTypeAggregation: Double? = null
    /**
     * 典型异常复现率
     */
    var typicalExceptionRepetitionRate: Double? = null
    /**
     * 统计类型(日统计或月统计),day month
     */
    var type: String? = null
}