package cn.iocoder.yudao.module.qcreport.engine.report; import cn.iocoder.yudao.module.qcreport.engine.context.ReportContext; import java.util.List; /** * 判定结果。 * * @param context 判定后的上下文(含各项 PASS/FAIL 与报告结论、合格率) * @param errors 规则的问题清单,渲染时必须在报告上显式暴露,不能悄悄吞掉 */ public record EvaluationOutcome(ReportContext context, List errors) { }