From 161070506489a4b610870d0b0eb6ac150142aaf3 Mon Sep 17 00:00:00 2001
From: zhangyh <zhangyahui@wealthgrow.cn>
Date: Tue, 7 Dec 2021 16:33:51 +0800
Subject: [PATCH] =?UTF-8?q?=E5=9F=BA=E9=87=91=E6=90=9C=E7=B4=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .../java/com/tanpu/fund/service/impl/ProductServiceImpl.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/com/tanpu/fund/service/impl/ProductServiceImpl.java b/src/main/java/com/tanpu/fund/service/impl/ProductServiceImpl.java
index e892728..960970f 100644
--- a/src/main/java/com/tanpu/fund/service/impl/ProductServiceImpl.java
+++ b/src/main/java/com/tanpu/fund/service/impl/ProductServiceImpl.java
@@ -2514,7 +2514,7 @@ public class ProductServiceImpl implements ProductService, Constant {
             fundInfoList.forEach(c -> {
                 c.setFundType(ProductTypeEnum.TAMP.type);
                 if (finalFundCountMap != null && finalFundCountMap.containsKey(c.getId())) {
-                    c.setRet1y(finalFundCountMap.get(c.getId()).getRet1y());
+                    c.setRet1y(BigDecimalUtil.multiply100(finalFundCountMap.get(c.getId()).getRet1y()));
                 }
 
                 if (finalFundNavMap != null && finalFundNavMap.containsKey(c.getId())) {
-- 
2.18.1