wl
2022-12-07 a9be2e0bfbd8e716207fc467e2699d9caec76a7c
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
package com.ycl.vo.cockpit.aiIot;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "实时监控")
public class VideoVO {
    @ApiModelProperty(value = "点位经度")
    private String longitude;
    @ApiModelProperty(value = "点位纬度")
    private String latitude;
    @ApiModelProperty(value = "点位名称")
    private String name;
    @ApiModelProperty(value = "设备唯一编码")
    private String resourceId;
    @ApiModelProperty(value = "设备品牌")
    private String brand;
    @ApiModelProperty(value = "设备型号")
    private String model;
    @ApiModelProperty(value = "设备IP地址")
    private String ip;
    @ApiModelProperty(value = "URL地址")
    private String url;
}