You've already forked FrameTour-BE
fix(face): 更新拼图模板分组名称
- 将拼图模板分组名称从 "plog" 更改为 "氛围拼图" - 确保与产品需求文档中的命名一致 - 避免因分组名称不明确导致的内容分类错误
This commit is contained in:
@@ -499,7 +499,7 @@ public class FaceServiceImpl implements FaceService {
|
|||||||
Optional<PuzzleGenerationRecordEntity> optionalRecord = records.stream().filter(r -> r.getTemplateId().equals(template.getId())).findFirst();
|
Optional<PuzzleGenerationRecordEntity> optionalRecord = records.stream().filter(r -> r.getTemplateId().equals(template.getId())).findFirst();
|
||||||
ContentPageVO sfpContent = new ContentPageVO();
|
ContentPageVO sfpContent = new ContentPageVO();
|
||||||
sfpContent.setName(template.getName());
|
sfpContent.setName(template.getName());
|
||||||
sfpContent.setGroup("plog");
|
sfpContent.setGroup("氛围拼图");
|
||||||
sfpContent.setScenicId(face.getScenicId());
|
sfpContent.setScenicId(face.getScenicId());
|
||||||
sfpContent.setContentType(3);
|
sfpContent.setContentType(3);
|
||||||
sfpContent.setSourceType(3);
|
sfpContent.setSourceType(3);
|
||||||
@@ -569,7 +569,7 @@ public class FaceServiceImpl implements FaceService {
|
|||||||
sourceAiCamContent.setLockType(-1);
|
sourceAiCamContent.setLockType(-1);
|
||||||
sourceVideoContent.setGroup("直出原片");
|
sourceVideoContent.setGroup("直出原片");
|
||||||
sourceImageContent.setGroup("直出原片");
|
sourceImageContent.setGroup("直出原片");
|
||||||
sourceAiCamContent.setGroup("直出原片");
|
sourceAiCamContent.setGroup("智能连连拍");
|
||||||
ScenicConfigManager configManager = scenicRepository.getScenicConfigManager(face.getScenicId());
|
ScenicConfigManager configManager = scenicRepository.getScenicConfigManager(face.getScenicId());
|
||||||
if (!scenicConfigFacade.isDisableSourceImage(face.getScenicId())) {
|
if (!scenicConfigFacade.isDisableSourceImage(face.getScenicId())) {
|
||||||
IsBuyRespVO isBuyRespVO = orderBiz.isBuy(face.getScenicId(), userId, faceId, SourceType.IMAGE.getCode(), faceId);
|
IsBuyRespVO isBuyRespVO = orderBiz.isBuy(face.getScenicId(), userId, faceId, SourceType.IMAGE.getCode(), faceId);
|
||||||
|
|||||||
Reference in New Issue
Block a user