From 7752bf5d88f0b03bf239bb01824cfb57bd9f7346 Mon Sep 17 00:00:00 2001 From: xiaoCJ <406612557@qq.com> Date: Tue, 3 Dec 2024 16:48:16 +0800 Subject: [PATCH] 1 --- .../money_management/service/impl/SynthesisPlanServiceImpl.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/com/sztzjy/money_management/service/impl/SynthesisPlanServiceImpl.java b/src/main/java/com/sztzjy/money_management/service/impl/SynthesisPlanServiceImpl.java index d1d8269..1d9e786 100644 --- a/src/main/java/com/sztzjy/money_management/service/impl/SynthesisPlanServiceImpl.java +++ b/src/main/java/com/sztzjy/money_management/service/impl/SynthesisPlanServiceImpl.java @@ -1255,7 +1255,6 @@ public class SynthesisPlanServiceImpl implements SynthesisPlanService { String caseScore = scoreGetter.apply(caseFinancialRatiosWithBLOBs); String stuScore = scoreGetter.apply(stuCaseFinancialRatiosWithBLOB); - if (StringUtils.isNotBlank(caseScore)) { SynthesisPlanScoreWithBLOBs synthesisPlanScore = new SynthesisPlanScoreWithBLOBs(); synthesisPlanScore.setSynthesisPlanId(IdUtil.randomUUID()); synthesisPlanScore.setCaseid(caseID); @@ -1266,7 +1265,6 @@ public class SynthesisPlanServiceImpl implements SynthesisPlanService { synthesisPlanScore.setCaseAnswer(caseScore); synthesisPlanScore.setStuAnswer(stuScore != null ? String.valueOf(stuScore) : null); list.add(synthesisPlanScore); - } } } }