liuxiaolong
2019-05-06 71af9c46c24b562acc00a71ec6c97c04eb048d9c
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package com.cloud.device.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 分析服务器节点下摄像机设备
 */
@Data
public class CameraVo implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "摄像机地址")
    private String str_addr;
 
    @ApiModelProperty(value = "品牌")
    private String str_brand;
 
    @ApiModelProperty(value = "摄像机mac地址")
    private String str_cam_dev_id;
 
    @ApiModelProperty(value = "cmp_thr")
    private String str_cmp_thr;
 
    @ApiModelProperty(value = "det_thr")
    private String str_det_thr;
 
    @ApiModelProperty(value = "ip")
    private String str_ip;
 
    @ApiModelProperty(value = "纬度")
    private String str_latitude;
 
    @ApiModelProperty(value = "经度")
    private String str_longitude;
 
    @ApiModelProperty(value = "名称")
    private String str_name;
 
    @ApiModelProperty(value = "密码")
    private String str_password;
 
    @ApiModelProperty(value = "预留")
    private String str_reserved;
 
    @ApiModelProperty(value = "用户名")
    private String str_username;
 
    @ApiModelProperty(value = "端口")
    private String n_port;
 
    @ApiModelProperty(value = "rtsp推流端口")
    private String rtsp_port;
 
    @ApiModelProperty(value = "摄像机类型,0:本地摄像机,1:GB28181摄像机")
    private Integer type;
}