TASK:模块化;

This commit is contained in:
shahaibo
2025-04-22 16:24:05 +08:00
parent 74ad20646d
commit 5a0c461961

View File

@@ -2610,6 +2610,11 @@ public class DesignServiceImpl extends ServiceImpl<DesignMapper, Design> impleme
List<PoseTransformationVO> voList = new ArrayList<>();
for (PoseTransformation poseTransformation : poseTransformationList) {
PoseTransformationVO poseTransformationVO = new PoseTransformationVO();
poseTransformationVO.setId(poseTransformation.getId());
poseTransformationVO.setIsLiked(poseTransformation.getIsLiked());
poseTransformationVO.setStatus("Success");
poseTransformationVO.setTaskId(poseTransformation.getUniqueId());
poseTransformationVO.setProductImage(minioUtil.getPreSignedUrl(poseTransformation.getProductImage(), CommonConstant.MINIO_IMAGE_EXPIRE_TIME));
if (null != poseTransformation.getGifUrl()){
poseTransformationVO.setGifUrl(minioUtil.getPreSignedUrl(poseTransformation.getGifUrl(), CommonConstant.MINIO_IMAGE_EXPIRE_TIME));
}