Merge branch 'feature-claimVerification-warrantyReport-epic' into 'master'

AI索赔新增字段

See merge request nsc/chinavolvoaidrives/ai-analytic-center!38
This commit is contained in:
YLIU335
2025-07-07 16:25:29 +08:00
2 changed files with 4 additions and 0 deletions

View File

@@ -33,4 +33,7 @@ public class ClaimVerificationFileDTO {
//诊断报告 //诊断报告
private JSONObject diagnosticReport; private JSONObject diagnosticReport;
//诊断报告
private JSONObject warrantyReport;
} }

View File

@@ -231,6 +231,7 @@ public class ClaimVerificationServiceImpl implements ClaimVerificationService {
audit.put("diagnosticReport", claimVerificationFileAnalysisDTO.getDiagnosticReport() == null ? " " :claimVerificationFileAnalysisDTO.getDiagnosticReport().toString()); audit.put("diagnosticReport", claimVerificationFileAnalysisDTO.getDiagnosticReport() == null ? " " :claimVerificationFileAnalysisDTO.getDiagnosticReport().toString());
audit.put("preCheckReport", claimVerificationFileAnalysisDTO.getPreCheckReport() == null ? " " :claimVerificationFileAnalysisDTO.getPreCheckReport().toString()); audit.put("preCheckReport", claimVerificationFileAnalysisDTO.getPreCheckReport() == null ? " " :claimVerificationFileAnalysisDTO.getPreCheckReport().toString());
audit.put("dtcReport", claimVerificationFileAnalysisDTO.getDtcReport() == null ? " " :claimVerificationFileAnalysisDTO.getDtcReport().toString()); audit.put("dtcReport", claimVerificationFileAnalysisDTO.getDtcReport() == null ? " " :claimVerificationFileAnalysisDTO.getDtcReport().toString());
audit.put("warrantyReport", claimVerificationFileAnalysisDTO.getWarrantyReport() == null ? " " :claimVerificationFileAnalysisDTO.getWarrantyReport().toString());
//脱敏处理 //脱敏处理
List<DataMaskingRule> maskingRuleItems = dataMaskingRuleService.getDataMaskingRuleListByApplicationChannel(Constant.CHANNEL_DCC); List<DataMaskingRule> maskingRuleItems = dataMaskingRuleService.getDataMaskingRuleListByApplicationChannel(Constant.CHANNEL_DCC);