|
|
@@ -170,6 +170,7 @@ public class BizQuestionGroupSquareServiceImpl implements IBizQuestionGroupSquar
|
|
|
.in(BizQuestionPO::getGroupId,bizQuestionGroupPO.getId()));
|
|
|
List<BizQuestionPO> bizQuestionPOS = bizQuestionSquarePOS.stream().map(bizQuestionSquarePO -> {
|
|
|
BizQuestionPO bizQuestionPO = BizQuestionMapper.INSTANCE.convertQuestionPO(bizQuestionSquarePO);
|
|
|
+ bizQuestionPO.setTenantId(tenantId);
|
|
|
bizQuestionPO.setGroupId(bizQuestionGroupPO.getId());
|
|
|
return bizQuestionPO;
|
|
|
}).collect(Collectors.toList());
|
|
|
@@ -178,6 +179,7 @@ public class BizQuestionGroupSquareServiceImpl implements IBizQuestionGroupSquar
|
|
|
bizQuestionGroupRepository.insert(newBizQuestionGroupPO);
|
|
|
List<BizQuestionPO> bizQuestionPOS = bizQuestionSquarePOS.stream().map(bizQuestionSquarePO -> {
|
|
|
BizQuestionPO bizQuestionPO = BizQuestionMapper.INSTANCE.convertQuestionPO(bizQuestionSquarePO);
|
|
|
+ bizQuestionPO.setTenantId(tenantId);
|
|
|
bizQuestionPO.setGroupId(newBizQuestionGroupPO.getId());
|
|
|
return bizQuestionPO;
|
|
|
}).collect(Collectors.toList());
|