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 b9aaed5..d1d8269 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 @@ -1106,22 +1106,22 @@ public class SynthesisPlanServiceImpl implements SynthesisPlanService { testCenters.put("国外学费增长率", item -> convertToString(item.getForeignEduFee())); testCenters.put("幼儿园教育-求学年龄", item -> convertToString(item.getaEduAge())); testCenters.put("幼儿园教育-求学时间", item -> convertToString(item.getaEduTime())); - testCenters.put("幼儿园教育-目前学费", item -> convertToString(item.getaEduTuition())); + testCenters.put("幼儿园教育-目前学费", item -> convertToString(item.getaTuition())); testCenters.put("小学教育-求学年龄", item -> convertToString(item.getbEduAge())); testCenters.put("小学教育-求学时间", item -> convertToString(item.getbEduTime())); - testCenters.put("小学教育-目前学费", item -> convertToString(item.getbEduTuition())); + testCenters.put("小学教育-目前学费", item -> convertToString(item.getbTuition())); testCenters.put("初中教育-求学年龄", item -> convertToString(item.getcEduAge())); testCenters.put("初中教育-求学时间", item -> convertToString(item.getcEduTime())); - testCenters.put("初中教育-目前学费", item -> convertToString(item.getcEduTuition())); + testCenters.put("初中教育-目前学费", item -> convertToString(item.getcTuition())); testCenters.put("高中教育-求学年龄", item -> convertToString(item.getdEduAge())); testCenters.put("高中教育-求学时间", item -> convertToString(item.getdEduTime())); - testCenters.put("高中教育-目前学费", item -> convertToString(item.getdEduTuition())); + testCenters.put("高中教育-目前学费", item -> convertToString(item.getdTuition())); testCenters.put("大学教育-求学年龄", item -> convertToString(item.geteEduAge())); testCenters.put("大学教育-求学时间", item -> convertToString(item.geteEduTime())); - testCenters.put("大学教育-目前学费", item -> convertToString(item.geteEduTuition())); + testCenters.put("大学教育-目前学费", item -> convertToString(item.geteTuition())); testCenters.put("留学教育-求学年龄", item -> convertToString(item.getfEduAge())); testCenters.put("留学教育-求学时间", item -> convertToString(item.getfEduTime())); - testCenters.put("留学教育-目前学费", item -> convertToString(item.getfEduTuition())); + testCenters.put("留学教育-目前学费", item -> convertToString(item.getfTuition())); testCenters.put("商业保险", item -> convertToString(item.getInsurance())); testCenters.put("储蓄计划", item -> convertToString(item.getDeposit())); testCenters.put("其他安排", item -> convertToString(item.getOther()));