DocumentQcTask.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 java.io.Serial;
  8. /**
  9. * 文档质控任务对象 document_qc_task
  10. *
  11. * @author Huanyi
  12. * @date 2026-01-06
  13. */
  14. @Data
  15. @EqualsAndHashCode(callSuper = true)
  16. @TableName("document_qc_task")
  17. public class DocumentQcTask extends TenantEntity {
  18. @Serial
  19. private static final long serialVersionUID = 1L;
  20. /**
  21. * 序号
  22. */
  23. @TableId(value = "id")
  24. private Long id;
  25. /**
  26. * 质控名称
  27. */
  28. private String name;
  29. /**
  30. * 发起人
  31. */
  32. private Long initiator;
  33. /**
  34. * 质控项目
  35. */
  36. private Long projectId;
  37. /**
  38. * 截止时间
  39. */
  40. private Date deadline;
  41. /**
  42. * 状态
  43. */
  44. private Integer status;
  45. /**
  46. * 备注
  47. */
  48. private String note;
  49. /**
  50. * 删除标志(0代表存在 1代表删除)
  51. */
  52. @TableLogic
  53. private String delFlag;
  54. }