MeetingDevice.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. package com.usky.meeting.domain;
  2. import java.time.LocalDateTime;
  3. import java.io.Serializable;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import lombok.Data;
  7. import lombok.EqualsAndHashCode;
  8. import javax.persistence.Entity;
  9. import javax.persistence.Id;
  10. /**
  11. * <p>
  12. * 设备表
  13. * </p>
  14. *
  15. * @author zyj
  16. * @since 2024-03-08
  17. */
  18. @Data
  19. @Entity
  20. @TableName("meeting_device")
  21. @EqualsAndHashCode(callSuper = false)
  22. public class MeetingDevice implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. @Id
  25. @TableId
  26. private Long deviceId;
  27. /**
  28. * 设备名称
  29. */
  30. private String deviceName;
  31. /**
  32. * 文件存储id(tool_local_storage)
  33. */
  34. private Long storageId;
  35. /**
  36. * 设备图片
  37. */
  38. private String imgPath;
  39. /**
  40. * 设备铭牌
  41. */
  42. private String nameplate;
  43. /**
  44. * 所属会议室
  45. */
  46. private String roomId;
  47. /**
  48. * 登记时间
  49. */
  50. private LocalDateTime registerDate;
  51. /**
  52. * 维护人
  53. */
  54. private String maintainer;
  55. /**
  56. * 联系方式
  57. */
  58. private String contacts;
  59. /**
  60. * 备注
  61. */
  62. private String remark;
  63. /**
  64. * 创建者
  65. */
  66. private String createBy;
  67. /**
  68. * 更新者
  69. */
  70. private String updateBy;
  71. /**
  72. * 创建日期
  73. */
  74. private LocalDateTime createTime;
  75. /**
  76. * 更新时间
  77. */
  78. private LocalDateTime updateTime;
  79. /**
  80. * 组织机构ID
  81. */
  82. private Integer deptId;
  83. /**
  84. * 租户ID
  85. */
  86. private Integer tenantId;
  87. }