fix(face): 更新拼图模板分组名称

- 将拼图模板分组名称从 "plog" 更改为 "氛围拼图"
- 确保与产品需求文档中的命名一致
- 避免因分组名称不明确导致的内容分类错误
This commit is contained in:
2025-12-18 19:40:40 +08:00
parent 3c8b3b0ace
commit 08e2a4ebec

View File

@@ -499,7 +499,7 @@ public class FaceServiceImpl implements FaceService {
Optional<PuzzleGenerationRecordEntity> optionalRecord = records.stream().filter(r -> r.getTemplateId().equals(template.getId())).findFirst();
ContentPageVO sfpContent = new ContentPageVO();
sfpContent.setName(template.getName());
sfpContent.setGroup("plog");
sfpContent.setGroup("氛围拼图");
sfpContent.setScenicId(face.getScenicId());
sfpContent.setContentType(3);
sfpContent.setSourceType(3);
@@ -569,7 +569,7 @@ public class FaceServiceImpl implements FaceService {
sourceAiCamContent.setLockType(-1);
sourceVideoContent.setGroup("直出原片");
sourceImageContent.setGroup("直出原片");
sourceAiCamContent.setGroup("直出原片");
sourceAiCamContent.setGroup("智能连连拍");
ScenicConfigManager configManager = scenicRepository.getScenicConfigManager(face.getScenicId());
if (!scenicConfigFacade.isDisableSourceImage(face.getScenicId())) {
IsBuyRespVO isBuyRespVO = orderBiz.isBuy(face.getScenicId(), userId, faceId, SourceType.IMAGE.getCode(), faceId);