|
@@ -1274,7 +1274,8 @@ public class WorkServiceImpl extends ServiceImpl<WorkMapper, WorkEntity> impleme
|
|
|
entity.setIcon(workAddDto.getSceneDTOList().get(0).getIcon());
|
|
|
String id = entity.getId();
|
|
|
log.info("创建对象完成: {}", id);
|
|
|
-
|
|
|
+ List<String> collect = workAddDto.getSceneDTOList().stream().map(v -> v.getSceneCode()).collect(Collectors.toList());
|
|
|
+ entity.setSceneCodes(StringUtils.join(collect, ","));
|
|
|
// 创建二维码、二维码url
|
|
|
// String shareUrlZH = configConstant.domain4dKK + "/panorama/showMobile.html?lang=zh&id=" + id;
|
|
|
// String shareUrlEN = configConstant.domain4dKK + "/panorama/showMobile.html?lang=en&id=" + id;
|