123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- package com.fdkankan.scene.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- * 监控推拉流信息
- * </p>
- *
- * @author
- * @since 2022-09-16
- */
- @Getter
- @Setter
- @TableName("t_surveillance")
- public class Surveillance implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 场景码
- */
- @TableField("num")
- private String num;
- /**
- * 监控名称
- */
- @TableField("name")
- private String name;
- /**
- * 监控唯一标识
- */
- @TableField("sid")
- private String sid;
- /**
- * panoId
- */
- @TableField("pano_id")
- private String panoId;
- /**
- * 摄像头设置信息
- */
- @TableField("data")
- private String data;
- /**
- * 播放地址
- */
- @TableField("play_url")
- private String playUrl;
- /**
- * 类型
- */
- @TableField("url_type")
- private Integer urlType;
- /**
- * 播放地址
- */
- @TableField("file_name")
- private String fileName;
- /**
- * 封面图
- */
- @TableField("poster")
- private String poster;
- /**
- * 创建时间
- */
- @TableField("create_time")
- private Date createTime;
- /**
- * 更新时间
- */
- @TableField("update_time")
- private Date updateTime;
- @TableField("rec_status")
- @TableLogic(value = "A", delval = "I")
- private String recStatus;
- }
|