20 小时以前 7a681887e5a8e1aab49acc886974d354c69a280e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
 
}