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
36
37
| package com.ruoyi.device.camera.domain;
|
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
|
| import java.util.Map;
|
| @Data
| @ApiModel(description = "sdk命令实体类")
| public class CameraCmd {
|
| /*相机ID*/
| String cameraId;
| /*相机通道号*/
| Integer channelNum;
| /*云台代码*/
| Integer code;
| /*云台速度*/
| Integer speed;
| /*开启关闭标识*/
| boolean enable;
| /*预置位号*/
| Integer presetIndex;
| /*聚焦值*/
| Integer dwFocusPos;
| /*PTZ值*/
| Map<String,Double>ptzMap;
|
| /*相机经纬度*/
| String camPosition;
| /*目标经纬度*/
| String targetPosition;
| /*当前操作者*/
| String operator;
| /*过期间隔(分钟)*/
| Integer expired;
| }
|
|