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 318568c..471bb9a 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 @@ -198,12 +198,12 @@ public class SynthesisPlanServiceImpl implements SynthesisPlanService { } if (RCIScoreInt >= 60 && RCIScoreInt <= 79) { allocation.put("货币", "0%"); - allocation.put("债券", "50%"); + allocation.put("债券", "20%"); allocation.put("股票", "80%"); } if (RCIScoreInt >= 80 && RCIScoreInt <= 100) { allocation.put("货币", "0%"); - allocation.put("债券", "40%"); + allocation.put("债券", "10%"); allocation.put("股票", "90%"); } }