feat(REQ-2699):元素表增加路由扩展数据字段

This commit is contained in:
李昆鹏 2024-08-07 13:54:11 +08:00
parent 4f7e8aa518
commit a0de50cfb5

View File

@ -337,6 +337,7 @@ public class SaasPageElementServiceImpl implements SaasPageElementService {
.type(e.getType())
.selected(selectedIds.contains(e.getId()))
.children(Lists.newArrayList())
.version(e.getVersion())
.build()).collect(Collectors.toList());
if (CollectionUtils.isEmpty(pageTypeElements)) {
return Collections.emptyList();
@ -352,6 +353,7 @@ public class SaasPageElementServiceImpl implements SaasPageElementService {
.name(e.getName())
.type(e.getType())
.selected(selectedIds.contains(e.getId()))
.version(e.getVersion())
.build());
}
});