TASK:模块化;

This commit is contained in:
shahaibo
2025-04-23 10:56:32 +08:00
parent 5913445257
commit 56ec903807

View File

@@ -1643,10 +1643,14 @@ public class UserLikeGroupServiceImpl extends ServiceImpl<UserLikeGroupMapper, U
if (CollectionUtil.isNotEmpty(threeDModules)) {
ThreeDModule threeDModule = threeDModules.get(0);
ThreeDVO patternMaking3D = getLayoutDetail(threeDModule.getThreeDSimpleId());
if (null != threeDModule.getThreeDSimpleId()) {
CollectionElement collectionElement = collectionElementMapper.selectById(threeDModule.getCollectionElementId());
if (Objects.nonNull(collectionElement)) {
patternMaking3D.setPrintUrl(minioUtil.getPreSignedUrl(collectionElement.getUrl(), CommonConstant.MINIO_IMAGE_EXPIRE_TIME));
patternMaking3D.setX(threeDModule.getX());
patternMaking3D.setY(threeDModule.getY());
}
}
moduleChooseVO.setPatternMaking3D(patternMaking3D);
}
}