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
| package com.ruoyi.alarm.global.domain;
|
| import lombok.Data;
| import lombok.experimental.Accessors;
|
| import java.util.Date;
|
| /**
| * @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;
| double[] targetPosition;
| GuidePTZ guidePTZ;
| }
|
|