Surveillance.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. package com.fdkankan.scene.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableLogic;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import java.io.Serializable;
  8. import java.util.Date;
  9. import lombok.Getter;
  10. import lombok.Setter;
  11. /**
  12. * <p>
  13. * 监控推拉流信息
  14. * </p>
  15. *
  16. * @author
  17. * @since 2022-09-16
  18. */
  19. @Getter
  20. @Setter
  21. @TableName("t_surveillance")
  22. public class Surveillance implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. @TableId(value = "id", type = IdType.AUTO)
  25. private Long id;
  26. /**
  27. * 场景码
  28. */
  29. @TableField("num")
  30. private String num;
  31. /**
  32. * 监控名称
  33. */
  34. @TableField("name")
  35. private String name;
  36. /**
  37. * 监控唯一标识
  38. */
  39. @TableField("sid")
  40. private String sid;
  41. /**
  42. * panoId
  43. */
  44. @TableField("pano_id")
  45. private String panoId;
  46. /**
  47. * 摄像头设置信息
  48. */
  49. @TableField("data")
  50. private String data;
  51. /**
  52. * 播放地址
  53. */
  54. @TableField("play_url")
  55. private String playUrl;
  56. /**
  57. * 类型
  58. */
  59. @TableField("url_type")
  60. private Integer urlType;
  61. /**
  62. * 播放地址
  63. */
  64. @TableField("file_name")
  65. private String fileName;
  66. /**
  67. * 封面图
  68. */
  69. @TableField("poster")
  70. private String poster;
  71. /**
  72. * 创建时间
  73. */
  74. @TableField("create_time")
  75. private Date createTime;
  76. /**
  77. * 更新时间
  78. */
  79. @TableField("update_time")
  80. private Date updateTime;
  81. @TableField("rec_status")
  82. @TableLogic(value = "A", delval = "I")
  83. private String recStatus;
  84. }