DmpDevice.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. package com.usky.alarm.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import java.time.LocalDateTime;
  5. import java.io.Serializable;
  6. import lombok.Data;
  7. import lombok.EqualsAndHashCode;
  8. /**
  9. * <p>
  10. * 设备信息表
  11. * </p>
  12. *
  13. * @author han
  14. * @since 2023-09-22
  15. */
  16. @Data
  17. @EqualsAndHashCode(callSuper = false)
  18. public class DmpDevice implements Serializable {
  19. private static final long serialVersionUID = 1L;
  20. /**
  21. * 主键id
  22. */
  23. @TableId(value = "id", type = IdType.AUTO)
  24. private Integer id;
  25. /**
  26. * 设备ID;设备注册时系统自动生成一个唯一编号
  27. */
  28. private String deviceId;
  29. /**
  30. * 设备名称
  31. */
  32. private String deviceName;
  33. /**
  34. * 设备类型(501、监控系统 502、门禁系统 503、梯控系统 504、机房系统 509、环境系统 510、照明系统)
  35. */
  36. private Integer deviceType;
  37. /**
  38. * 产品ID
  39. */
  40. private Integer productId;
  41. /**
  42. * 物联网卡号
  43. */
  44. private String simCode;
  45. /**
  46. * 国际移动用户识别码
  47. */
  48. private String imsiCode;
  49. /**
  50. * 自动订阅标识(0:否,1:是)
  51. */
  52. private Integer subscribeFlag;
  53. /**
  54. * 节点类型
  55. */
  56. private Integer nodeType;
  57. /**
  58. * 分组id
  59. */
  60. private Integer groupId;
  61. /**
  62. * 删除标识
  63. */
  64. private Integer deleteFlag;
  65. /**
  66. * 创建人
  67. */
  68. private String createdBy;
  69. /**
  70. * 创建时间
  71. */
  72. private LocalDateTime createdTime;
  73. /**
  74. * 更新人
  75. */
  76. private String updatedBy;
  77. /**
  78. * 更新时间
  79. */
  80. private LocalDateTime updatedTime;
  81. /**
  82. * 租户号
  83. */
  84. private Integer tenantId;
  85. /**
  86. * 单位编号
  87. */
  88. private String companyCode;
  89. /**
  90. * 安装位置
  91. */
  92. private String installAddress;
  93. /**
  94. * 业务状态;1:未激活,2:已激活,3:禁用
  95. */
  96. private Integer serviceStatus;
  97. /**
  98. * 产品编码
  99. */
  100. private String productCode;
  101. /**
  102. * 设备UUID
  103. */
  104. private String deviceUuid;
  105. }