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;
|
}
|