package com.ruoyi.alarm.radar.domain;
|
|
import java.util.Date;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
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_move
|
*
|
* @author ard
|
* @date 2023-09-02
|
*/
|
@Data
|
public class ArdAlarmRadarMove 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;
|
|
/** 引导录像1 */
|
@Excel(name = "引导录像1")
|
private String recordUrl1;
|
/** 引导录像2 */
|
@Excel(name = "引导录像2")
|
private String recordUrl2;
|
/** 查看时间 */
|
@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;
|
|
|
|
}
|