package cn.iocoder.yudao.module.mes.service.qc.indicatorresult; import cn.iocoder.yudao.module.mes.controller.admin.qc.indicatorresult.vo.MesQcQcReportRespVO; /** * MES 检验报告单 Service(打印数据聚合,四类质检单通用) * * @author 超级管理员 */ public interface MesQcReportService { /** * 获得检验报告单数据(表头 + 检验项树 + 平行测量值 + 签字区) * * @param qcId 质检单 ID * @param qcType 质检类型({@link cn.iocoder.yudao.module.mes.enums.qc.MesQcTypeEnum}) * @param resultId 检验结果(样品)ID,可为空;为空时取该检验单下最早的样品 * @return 报告数据 */ MesQcQcReportRespVO getQcReportData(Long qcId, Integer qcType, Long resultId); }