DocumentQcTaskDetail.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.io.Serial;
  7. import java.util.Date;
  8. /**
  9. * 文档质控细节对象 document_quality_control_task_detail
  10. *
  11. * @author Huanyi
  12. * @date 2026-01-08
  13. */
  14. @Data
  15. @EqualsAndHashCode(callSuper = true)
  16. @TableName("document_qc_task_detail")
  17. public class DocumentQcTaskDetail 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 Long taskId;
  29. /**
  30. * 质控文件
  31. */
  32. private Long documentId;
  33. /**
  34. * 计划执行人
  35. */
  36. private Long executor;
  37. /**
  38. * 状态
  39. */
  40. private Integer status;
  41. /**
  42. * 备注
  43. */
  44. private String note;
  45. /**
  46. * 删除标志(0代表存在 1代表删除)
  47. */
  48. @TableLogic
  49. private String delFlag;
  50. /**
  51. * 方便查询的冗余字段
  52. */
  53. private Long projectId;
  54. private Date executionTime;
  55. private Date finishTime;
  56. }