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

View File

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