REQ-3300: 升级腾讯SDK

This commit is contained in:
yanglin 2025-02-27 15:36:53 +08:00
parent b26f34efbc
commit 2956c77ac9
2 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ public class QueryService {
.filter(org -> org.getOuId().equals(ouId)) // .filter(org -> org.getOuId().equals(ouId)) //
.map(EssOrg::isAuthorized) // .map(EssOrg::isAuthorized) //
.findFirst() // .findFirst() //
.orElse(false)); // .orElse(false));
} }
return responses; return responses;
} }
@ -93,7 +93,7 @@ public class QueryService {
Set<String> essSealIds = ouId2Seals.values().stream() // Set<String> essSealIds = ouId2Seals.values().stream() //
.flatMap(Collection::stream) // .flatMap(Collection::stream) //
.map(EssSeal::getEssSealId) // .map(EssSeal::getEssSealId) //
.collect(toSet()); // .collect(toSet());
Map<String, List<EssSealPerson>> essSealId2Persons = Collections.emptyMap(); Map<String, List<EssSealPerson>> essSealId2Persons = Collections.emptyMap();
if (!essSealIds.isEmpty()) if (!essSealIds.isEmpty())
essSealId2Persons = essSealPersonDao.lambdaQuery() // essSealId2Persons = essSealPersonDao.lambdaQuery() //

View File

@ -149,7 +149,7 @@ class CallbackController implements EssCallbackApi, InitializingBean {
.map(CallbackRequest.FlowApproverDetail::getProxyOrganizationOpenId) // .map(CallbackRequest.FlowApproverDetail::getProxyOrganizationOpenId) //
.map(this::parseLong) // .map(this::parseLong) //
.filter(Objects::nonNull) // .filter(Objects::nonNull) //
.collect(toList()); // .collect(toList());
OrgProfiles orgProfiles = OrgProfiles.wrap(essSupport.getOrgProfiles(ouIds)); OrgProfiles orgProfiles = OrgProfiles.wrap(essSupport.getOrgProfiles(ouIds));
List<EssApproveDetail> approveDetails = changes.getFlowApproverInfo().stream().map(info -> { List<EssApproveDetail> approveDetails = changes.getFlowApproverInfo().stream().map(info -> {
EssApproveDetail detail = new EssApproveDetail(); EssApproveDetail detail = new EssApproveDetail();