From d42e177dca4278fd851ac234d2aab41f545c0de7 Mon Sep 17 00:00:00 2001 From: xiaoCJ <406612557@qq.com> Date: Wed, 13 Nov 2024 14:01:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20=E9=A3=8E=E9=99=A9?= =?UTF-8?q?=E6=B5=8B=E8=AF=84=E8=BF=94=E5=9B=9E=E5=8D=A0=E6=AF=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/SynthesisPlanServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 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 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%"); } }