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
| package com.tievd.jyz.mqtt.dto;
|
| import lombok.Data;
|
| /**
| * 终端传输类
| * @author timi
| */
| @Data
| public class CameraDTO {
| /** 终端编号,必填 */
| private String code;
| /** 终端名称 */
| private String name;
| /** 设备厂家 天翼1 宇视2 海康3 大华4 其他5 */
| private String factory;
| /** 流类型,默认rtsp */
| private String streamType;
| /** ip */
| private String ip;
| /** 端口 */
| private String port;
| /** rtsp地址 */
| private String rtsp;
| /** 用户名 */
| private String username;
| /** 密码 */
| private String password;
| /** 更新时间,毫秒时间戳,必填 */
| private String updateTime;
| /** 在线状态:0:未知;1:在线;2:离线 */
| private String status;
| //安装位置 1卸油区 2加油区,3便利店,4入口, 5出口
| private Byte installAddress;
|
| }
|
|