1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.ruoyi.alarm.global.domain;
 
import com.ruoyi.device.camera.domain.ArdCameras;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.util.Date;
import java.util.List;
 
/**
 * @Description: 引导数据实体
 * @ClassName: GuideDataDto
 * @Author: 刘苏义
 * @Date: 2023年12月09日11:37:58
 **/
@Data
@Accessors(chain = true)
public class GuideDataDto {
    String radarId;
    String name;
    String cameraId;
    String alarmId;
    String alarmType;
    Date receiveTime;
    GuidePTZ guidePTZ;
    GuidePoint targetPosition;
    String wellId;
    Boolean isGuidePTZ;//是否ptz引导
}