feat: (feature/REQ-3167) 处理资源更新问题

This commit is contained in:
李龙 2024-11-27 11:48:18 +08:00
parent ba1de51a25
commit 10b84b1e06
3 changed files with 4 additions and 0 deletions

View File

@ -20,4 +20,6 @@ public class TerminalRes {
private String terminalType;
private String terminalBizType;
private Integer featureType;
}

View File

@ -63,6 +63,7 @@ public class TerminalController implements TerminalApi {
.terminalBizType(Optional.ofNullable(extra)
.map(FeatureResourceExtraDO::getTerminalBizType)
.orElse(null))
.featureType(e.getFeatureType())
.build();
})
.collect(Collectors.toList()));

View File

@ -1240,6 +1240,7 @@ public class SaasPageElementServiceImpl extends ServiceImpl<SaasPageElementMappe
} else {
saasPageElement.setExt(saasPageElement.buildMergedExt(ext));
}
saasPageElement.setId(e.getId());
return saasPageElement;
})
.collect(Collectors.toList());