| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- 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.util.Date;
- import java.io.Serial;
- /**
- * 文档质控任务对象 document_qc_task
- *
- * @author Huanyi
- * @date 2026-01-06
- */
- @Data
- @EqualsAndHashCode(callSuper = true)
- @TableName("document_qc_task")
- public class DocumentQcTask extends TenantEntity {
- @Serial
- private static final long serialVersionUID = 1L;
- /**
- * 序号
- */
- @TableId(value = "id")
- private Long id;
- /**
- * 质控名称
- */
- private String name;
- /**
- * 发起人
- */
- private Long initiator;
- /**
- * 质控项目
- */
- private Long projectId;
- /**
- * 截止时间
- */
- private Date deadline;
- /**
- * 状态
- */
- private Integer status;
- /**
- * 备注
- */
- private String note;
- /**
- * 删除标志(0代表存在 1代表删除)
- */
- @TableLogic
- private String delFlag;
- }
|