|
@@ -203,9 +203,12 @@ public class FundAliasServiceImpl implements FundAliasService {
|
|
|
}).toList();
|
|
|
|
|
|
if (CollUtil.isNotEmpty(navDOList)) {
|
|
|
+ log.info("基金Id:{}, 更新的净值数据:{}", fundId, navDOList);
|
|
|
navMapper.batchInsert(navDOList);
|
|
|
}
|
|
|
List<Integer> emailFundNavIdList = emailFundNavDOList.stream().map(EmailFundNavDO::getId).toList();
|
|
|
+ log.info("基金Id:{}, 更新email_fund_nav的fund_id字段id:{}", fundId, emailFundNavIdList);
|
|
|
+
|
|
|
if (CollUtil.isNotEmpty(emailFundNavIdList)) {
|
|
|
emailFundNavMapper.updateFundIdByIds(fundId, emailFundNavIdList);
|
|
|
}
|