liusuyi
2024-05-20 0ca308dba91ddbd3391285a2b566b0c958a164f2
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
30
31
32
33
34
35
package com.ruoyi.alarm.global.domain;
 
import lombok.Data;
import lombok.experimental.Accessors;
 
/**
 * @Description:
 * @ClassName: GuideCameraDto
 * @Author: 刘苏义
 * @Date: 2024年03月11日11:45:38
 **/
@Data
@Accessors(chain = true)
public class GuideCameraDto {
    /**
     * 摄像头id
     */
    private String cameraId;
    /**
     * 摄像头通道
     */
    private Integer chanNo;
    /**
     * 是否引导ptz
     */
    private Boolean isGuidePTZ;
    /**
     * 引导坐标实体
     */
    private GuidePoint guidePoint;
    /**
     * 引导PTZ实体
     */
    private GuidePTZ guidePTZ;
}