EventLc.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. package com.usky.park.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 zyj
  14. * @since 2023-04-10
  15. */
  16. @Data
  17. @EqualsAndHashCode(callSuper = false)
  18. public class EventLc 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 deviceCode;
  33. /**
  34. * 设备名称
  35. */
  36. private String deviceName;
  37. /**
  38. * 电梯名称
  39. */
  40. private String liftName;
  41. /**
  42. * 事件ID
  43. */
  44. private String eventId;
  45. /**
  46. * 事件类型
  47. */
  48. private Integer eventType;
  49. /**
  50. * 事件名称
  51. */
  52. private String eventName;
  53. /**
  54. * 事件产生的时间
  55. */
  56. private LocalDateTime eventTime;
  57. /**
  58. * 人员唯一编码
  59. */
  60. private String personId;
  61. /**
  62. * 卡号
  63. */
  64. private String cardNo;
  65. /**
  66. * 人员名称
  67. */
  68. private String personName;
  69. /**
  70. * 组织编码
  71. */
  72. private String orgId;
  73. /**
  74. * 组织名称
  75. */
  76. private String orgName;
  77. /**
  78. * 平台接收事件时间
  79. */
  80. private LocalDateTime receiveTime;
  81. /**
  82. * 租户号
  83. */
  84. private Integer tenantId;
  85. }