1
2
3
4
5
6
7
8
9
10
11
12
13
14
| 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<String> errors) {
| }
|
|