package cn.gistack.nky.entity;
|
|
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.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler;
|
import lombok.Data;
|
import org.springframework.data.annotation.Id;
|
|
/**
|
* 南科院判定异常查询实体类
|
*/
|
@Data
|
@TableName( value = "NKY_ALARM_GET")
|
public class AlarmGet {
|
|
/**
|
* 主键
|
*/
|
private String id;
|
|
/**
|
* 大坝id
|
*/
|
private String damId;
|
|
/**
|
* 测点id
|
*/
|
private String pointId;
|
|
/**
|
* 物理量id
|
*/
|
private String type;
|
|
/**
|
* 数据时间
|
*/
|
private String time;
|
|
/**
|
* 测量值
|
*/
|
private String value;
|
|
/**
|
* 描述
|
*/
|
private String desc;
|
|
/**
|
* 生成时间
|
*/
|
private String createTime;
|
|
/**
|
* 算法编号
|
*/
|
private Integer taskCategory;
|
|
/**
|
* 报警等级
|
*/
|
private Integer level;
|
|
/**
|
* 报警值
|
*/
|
private Double baojingzhi;
|
|
/**
|
* 原始数据id
|
*/
|
private Integer originId;
|
|
/**
|
* 正向阈值
|
*/
|
private String forward;
|
|
/**
|
* 反向阈值
|
*/
|
private String reverse;
|
|
/**
|
* 系数阈值
|
*/
|
private String ratio;
|
}
|