| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package com.fdkankan.scene.vo;
- import com.alibaba.fastjson.JSONObject;
- import java.io.Serializable;
- import lombok.Data;
- import javax.validation.constraints.NotNull;
- /**
- * <p>
- * 监控推拉流信息
- * </p>
- *
- * @author
- * @since 2022-09-16
- */
- @Data
- public class SurveillanceVO implements Serializable {
- private static final long serialVersionUID = 1L;
- private Long id;
- /**
- * 监控名称
- */
- private String name;
- /**
- * 摄像头设置信息
- */
- private JSONObject data;
- /**
- * 播放地址
- */
- private String playUrl;
- private Integer urlType;
- private String poster;
- private String fileName;
- private String sid;
- private String panoId;
- private Integer fileSize;
- }
|