|
@@ -196,8 +196,8 @@ public class QualityTaskServiceImpl implements QualityTaskService {
|
|
|
|
|
|
throw new ServerException("稽核数据不存在;sql:" + sql);
|
|
|
}
|
|
|
- int correct = newResult.size(); // 符合条件
|
|
|
- int error = result.size() - correct;
|
|
|
+ Integer correct = newResult.size(); // 符合条件
|
|
|
+ Integer error = result.size() - correct;
|
|
|
if (inspectionType.equalsIgnoreCase("integrity")) {
|
|
|
// 完整性
|
|
|
qualityAuditor.setIntegrityCorrect(correct);
|