| | |
| | | package cn.iocoder.yudao.module.mes.dal.dataobject.qc.oqc; |
| | | |
| | | import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO; |
| | | import cn.iocoder.yudao.module.mes.dal.dataobject.md.client.MesMdClientDO; |
| | | import cn.iocoder.yudao.module.mes.dal.dataobject.md.item.MesMdItemDO; |
| | | import cn.iocoder.yudao.module.mes.dal.dataobject.qc.template.MesQcTemplateDO; |
| | | import com.baomidou.mybatisplus.annotation.KeySequence; |
| | |
| | | /** |
| | | * MES 出货检验单(OQC, Outgoing Quality Control) DO |
| | | * |
| | | * @author 芋道源码 |
| | | * @author 超级管理员 |
| | | */ |
| | | @TableName("mes_qc_oqc") |
| | | @KeySequence("mes_qc_oqc_seq") |
| | |
| | | /** |
| | | * 客户 ID |
| | | * |
| | | * 关联 {@link MesMdClientDO#getId()} |
| | | * 关联 CRM 客户 {@link cn.iocoder.yudao.module.crm.api.customer.dto.CrmCustomerRespDTO#getId()} |
| | | */ |
| | | private Long clientId; |
| | | /** |
| | |
| | | * 枚举 {@link cn.iocoder.yudao.module.mes.enums.qc.MesQcStatusEnum} |
| | | */ |
| | | private Integer status; |
| | | |
| | | // ========== 报告表头与签字 ========== |
| | | |
| | | /** |
| | | * 采样地点 |
| | | */ |
| | | private String samplingLocation; |
| | | /** |
| | | * 证书编号/合格证号 |
| | | */ |
| | | private String certificateNo; |
| | | /** |
| | | * 执行标准(如 GB/T6027) |
| | | */ |
| | | private String executeStandard; |
| | | /** |
| | | * 复核人用户编号 |
| | | * |
| | | * 关联 AdminUserDO 的 id |
| | | */ |
| | | private Long auditUserId; |
| | | /** |
| | | * 审核人用户编号 |
| | | * |
| | | * 关联 AdminUserDO 的 id |
| | | */ |
| | | private Long approveUserId; |
| | | /** |
| | | * 备注 |
| | | */ |