package com.ruoyi.alarm.radar.domain;
|
|
import java.util.Date;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.alarm.global.domain.GuidePTZ;
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
/**
|
* 雷达抽油机停机报警对象 ard_alarm_radar_pump
|
*
|
* @author ard
|
* @date 2023-09-02
|
*/
|
@Data
|
public class ArdAlarmRadarPump extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 记录ID
|
*/
|
private String id;
|
|
/**
|
* 兴趣点名称
|
*/
|
@Excel(name = "兴趣点名称")
|
private String name;
|
|
/**
|
* 目标ID
|
*/
|
@Excel(name = "目标ID")
|
private String targetId;
|
|
/**
|
* 报警类型
|
*/
|
@Excel(name = "报警类型")
|
private String alarmType;
|
|
/**
|
* 报警时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "报警时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date alarmTime;
|
|
/**
|
* 经度
|
*/
|
@Excel(name = "经度")
|
private Double longitude;
|
|
/**
|
* 纬度
|
*/
|
@Excel(name = "纬度")
|
private Double latitude;
|
/**
|
* 引导录像
|
*/
|
@Excel(name = "引导录像")
|
private String recordUrl;
|
|
/**
|
* 查看时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "查看时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date viewTime;
|
|
/**
|
* 用户ID
|
*/
|
@Excel(name = "用户ID")
|
private String userId;
|
|
/**
|
* 部门ID
|
*/
|
@Excel(name = "部门ID")
|
private Long deptId;
|
|
/**
|
* 引导时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "引导时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date guideTime;
|
|
|
/**
|
* 报警总数
|
*/
|
private Integer total;
|
/**
|
* 未读报警数量
|
*/
|
private Integer count;
|
/**
|
* 雷达ID
|
*/
|
private String radarId;
|
/**
|
* 引导PTZ值
|
*/
|
private GuidePTZ guidePTZ;
|
|
}
|