| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package com.welampiot.vo;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * ClassName: VideoMonitorDetailVO
- * Package: com.welampiot.vo
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/8/21 - 17:25
- * @Version: v1.0
- */
- @Data
- public class VideoMonitorDetailVO implements Serializable {
- private Integer id;
- private String name;
- private String longitude;
- private String latitude;
- private Integer deviceType;
- private Integer netType;
- private Integer areaId;
- private Integer sectionId;
- private String area;
- private String section;
- private String devId;
- private String password;
- private String channel;
- private Integer type;
- private String typeStr;
- private Integer hls;
- private String hlsHd;
- private String rtmp;
- private String rtmpHd;
- private String installDate;
- private String expirationDate;
- private Integer version;
- }
|