TblVideoDetailVo.java 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. package com.ruoyi.data.domain.vo;
  2. import java.util.Date;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
  5. import com.alibaba.excel.annotation.ExcelProperty;
  6. import com.ruoyi.common.annotation.ExcelDictFormat;
  7. import com.ruoyi.common.convert.ExcelDictConvert;
  8. import lombok.Data;
  9. import java.util.Date;
  10. import java.io.Serializable;
  11. /**
  12. * 摄像机详情视图对象 tbl_video_detail
  13. *
  14. * @author ruoyi
  15. * @date 2023-12-01
  16. */
  17. @Data
  18. @ExcelIgnoreUnannotated
  19. public class TblVideoDetailVo implements Serializable {
  20. private static final long serialVersionUID = 1L;
  21. /**
  22. *
  23. */
  24. @ExcelProperty(value = "")
  25. private Long id;
  26. /**
  27. * 视频通道输入号
  28. */
  29. @ExcelProperty(value = "视频通道输入号")
  30. private String videoChannel;
  31. /**
  32. * 摄像机编码
  33. */
  34. @ExcelProperty(value = "摄像机编码")
  35. private String cameraCode;
  36. /**
  37. * 摄像机名称
  38. */
  39. @ExcelProperty(value = "摄像机名称")
  40. private String cameraName;
  41. /**
  42. * 摄像机类型
  43. */
  44. @ExcelProperty(value = "摄像机类型")
  45. private String cameraType;
  46. /**
  47. * 摄像机位置
  48. */
  49. @ExcelProperty(value = "摄像机位置")
  50. private String cameraLocationDesc;
  51. /**
  52. * 经度
  53. */
  54. @ExcelProperty(value = "经度")
  55. private String longitude;
  56. /**
  57. * 纬度
  58. */
  59. @ExcelProperty(value = "纬度")
  60. private String latitude;
  61. /**
  62. * 高度
  63. */
  64. @ExcelProperty(value = "高度")
  65. private String height;
  66. /**
  67. * 音频输出通道
  68. */
  69. @ExcelProperty(value = "音频输出通道")
  70. private String voiceOutCode;
  71. /**
  72. * 是否支持组播
  73. */
  74. @ExcelProperty(value = "是否支持组播")
  75. private String isSupportBoardcast;
  76. /**
  77. * 创建人
  78. */
  79. @ExcelProperty(value = "创建人")
  80. private String creator;
  81. /**
  82. * 创建时间
  83. */
  84. @ExcelProperty(value = "创建时间")
  85. private Date ctime;
  86. /**
  87. * 更新人
  88. */
  89. @ExcelProperty(value = "更新人")
  90. private String modifier;
  91. /**
  92. * 更新时间
  93. */
  94. @ExcelProperty(value = "更新时间")
  95. private Date utime;
  96. /**
  97. * 备注
  98. */
  99. @ExcelProperty(value = "备注")
  100. private String remark;
  101. /**
  102. * 主设备id
  103. */
  104. @ExcelProperty(value = "主设备id")
  105. private Long videoId;
  106. }