PmReceive.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package com.usky.iot.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 2024-07-09
  15. */
  16. @Data
  17. @EqualsAndHashCode(callSuper = false)
  18. public class PmReceive 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 Long receiverId;
  29. /**
  30. * 接收人
  31. */
  32. private String receiverName;
  33. /**
  34. * 报告id
  35. */
  36. private Integer reportId;
  37. /**
  38. * 租户号
  39. */
  40. private Integer tenantId;
  41. /**
  42. * 组织机构ID
  43. */
  44. private Long deptId;
  45. /**
  46. * 创建人
  47. */
  48. private String createBy;
  49. /**
  50. * 创建时间
  51. */
  52. private LocalDateTime createTime;
  53. /**
  54. * 更新人
  55. */
  56. private String updateBy;
  57. /**
  58. * 更新时间
  59. */
  60. private LocalDateTime updateTime;
  61. /**
  62. * 是否已读;0、未读,1、已读
  63. */
  64. private Integer readFlag;
  65. }