SysCamera.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. package com.huimv.guowei.admin.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import com.baomidou.mybatisplus.annotation.IdType;
  5. import com.baomidou.mybatisplus.annotation.TableId;
  6. import java.io.Serializable;
  7. import com.fhs.core.trans.anno.Trans;
  8. import com.fhs.core.trans.constant.TransType;
  9. import com.fhs.core.trans.vo.TransPojo;
  10. import lombok.Data;
  11. import lombok.EqualsAndHashCode;
  12. import lombok.experimental.Accessors;
  13. /**
  14. * <p>
  15. *
  16. * </p>
  17. *
  18. * @author author
  19. * @since 2023-06-01
  20. */
  21. @Data
  22. @EqualsAndHashCode(callSuper = false)
  23. @Accessors(chain = true)
  24. @TableName("sys_camera")
  25. public class SysCamera implements Serializable, TransPojo {
  26. private static final long serialVersionUID = 1L;
  27. @TableId(value = "id", type = IdType.AUTO)
  28. private Integer id;
  29. /**
  30. * 摄像头名字
  31. */
  32. private String cameraName;
  33. /**
  34. * 账号
  35. */
  36. private String account;
  37. /**
  38. * 密码
  39. */
  40. private String password;
  41. /**
  42. * 区域名字
  43. */
  44. private String areaName;
  45. /**
  46. * 区域id
  47. */
  48. private Integer areaId;
  49. @TableField(exist = false)
  50. private String publicUrl;
  51. /**
  52. * 摄像头ip
  53. */
  54. private String cameraIp;
  55. /**
  56. * 0未关注,1关注
  57. */
  58. private Integer attention;
  59. /**
  60. * 品牌()
  61. */
  62. private String brandName;
  63. /**
  64. * 品牌id
  65. */
  66. private Integer brandId;
  67. /**
  68. * 1正常 0停用
  69. */
  70. private Integer runStatus;
  71. private Integer sort;
  72. private Integer farmId;
  73. private Integer roomId;
  74. /**
  75. * icc 通道
  76. */
  77. private String iccChannel;
  78. /**
  79. * 功能点id
  80. */
  81. private Integer functionId;
  82. /**
  83. * 1在线 0离线
  84. */
  85. private Boolean isOnline;
  86. }