|
@@ -205,6 +205,13 @@ public class BocomVipAccountBasicInfoServiceImpl extends ServiceImpl<BocomVipAcc
|
|
|
bocomVipLimitInfo.setBocomVipAccountBasicInfoId(newBasicInfo.getId());
|
|
|
bocomVipLimitInfoService.save(bocomVipLimitInfo);
|
|
|
}
|
|
|
+
|
|
|
+ if (CollectionUtil.isNotEmpty(newBasicInfo.getNoticeInfoList())) {
|
|
|
+ newBasicInfo.getNoticeInfoList().forEach(n -> {
|
|
|
+ n.setBocomVipAccountBasicInfoId(newBasicInfo.getId());
|
|
|
+ bocomVipAccountNoticeInfoService.save(n);
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
//填充需要授权的人
|
|
|
autoAuthenticator(newBasicInfo);
|