Document.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package com.yingpaipay.business.domain;
  2. import org.dromara.common.tenant.core.TenantEntity;
  3. import com.baomidou.mybatisplus.annotation.*;
  4. import lombok.Data;
  5. import lombok.EqualsAndHashCode;
  6. import java.util.Date;
  7. import com.fasterxml.jackson.annotation.JsonFormat;
  8. import java.io.Serial;
  9. /**
  10. * 文档对象 document
  11. *
  12. * @author Huanyi
  13. * @date 2025-12-11
  14. */
  15. @Data
  16. @EqualsAndHashCode(callSuper = true)
  17. @TableName("document")
  18. public class Document extends TenantEntity {
  19. @Serial
  20. private static final long serialVersionUID = 1L;
  21. /**
  22. * 序号
  23. */
  24. @TableId(value = "id")
  25. private Long id;
  26. /**
  27. * 所属文件夹
  28. */
  29. private Long folderId;
  30. /**
  31. * 文档标识
  32. */
  33. private String specification;
  34. /**
  35. * 计划文件类型
  36. */
  37. private String planType;
  38. /**
  39. * 计划名称
  40. */
  41. private String name;
  42. /**
  43. * 状态
  44. */
  45. private Integer status;
  46. /**
  47. * 递交截止时间
  48. */
  49. private Date submitDeadline;
  50. /**
  51. * 文档本体
  52. */
  53. private Long actualDocument;
  54. /**
  55. * 备注
  56. */
  57. private String note;
  58. /**
  59. * 删除标志(0代表存在 1代表删除)
  60. */
  61. @TableLogic
  62. private String delFlag;
  63. private Integer type;
  64. private Long submitter;
  65. private Date submitTime;
  66. private Long projectId;
  67. private Integer specificationType;
  68. private Boolean sendFlag;
  69. private Boolean sendStatus;
  70. private Long planSubmitter;
  71. private Date passTime;
  72. private Date effectiveDate;
  73. private String language;
  74. private String version;
  75. private Date versionDate;
  76. private Date ethicsSubmissionDate;
  77. private Date ethicsApprovalDate;
  78. }