feat: (feature/REQ-3167) 处理资源更新问题
This commit is contained in:
parent
ba1de51a25
commit
10b84b1e06
@ -20,4 +20,6 @@ public class TerminalRes {
|
||||
private String terminalType;
|
||||
|
||||
private String terminalBizType;
|
||||
|
||||
private Integer featureType;
|
||||
}
|
||||
|
||||
@ -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()));
|
||||
|
||||
@ -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());
|
||||
|
||||
Loading…
Reference in New Issue
Block a user