| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- package com.yingpaipay.business.domain;
- import org.dromara.common.tenant.core.TenantEntity;
- import com.baomidou.mybatisplus.annotation.*;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import java.io.Serial;
- import java.util.Date;
- /**
- * 文档质控细节对象 document_quality_control_task_detail
- *
- * @author Huanyi
- * @date 2026-01-08
- */
- @Data
- @EqualsAndHashCode(callSuper = true)
- @TableName("document_qc_task_detail")
- public class DocumentQcTaskDetail extends TenantEntity {
- @Serial
- private static final long serialVersionUID = 1L;
- /**
- * 序号
- */
- @TableId(value = "id")
- private Long id;
- /**
- * 所属任务
- */
- private Long taskId;
- /**
- * 质控文件
- */
- private Long documentId;
- /**
- * 计划执行人
- */
- private Long executor;
- /**
- * 状态
- */
- private Integer status;
- /**
- * 备注
- */
- private String note;
- /**
- * 删除标志(0代表存在 1代表删除)
- */
- @TableLogic
- private String delFlag;
- /**
- * 方便查询的冗余字段
- */
- private Long projectId;
- private Date executionTime;
- private Date finishTime;
- }
|