|
|
@@ -53,7 +53,7 @@ public class LeadServiceImpl extends ServiceImpl<LeadMapper, Lead> implements IL
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- @Async("asyncExecutor")
|
|
|
+ @Async
|
|
|
public void updateGroupAddMemberLead(String userId, String chatId, String corpId, String unionid) {
|
|
|
// 末次归因逻辑
|
|
|
Lead lead = this.getOne(new LambdaQueryWrapper<Lead>()
|
|
|
@@ -79,7 +79,7 @@ public class LeadServiceImpl extends ServiceImpl<LeadMapper, Lead> implements IL
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- @Async("asyncExecutor")
|
|
|
+ @Async
|
|
|
public CompletableFuture<String> updateAddMemberLead(String externalUserID, String userID, String corpId, String state) {
|
|
|
QwExternalContactResult externalContactResult = qwApiService.getExternalcontact(externalUserID, corpId);
|
|
|
String unionid = externalContactResult.getExternal_contact().getUnionid();
|
|
|
@@ -117,7 +117,7 @@ public class LeadServiceImpl extends ServiceImpl<LeadMapper, Lead> implements IL
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- @Async("asyncExecutor")
|
|
|
+ @Async
|
|
|
public void weChatAuthorizationLead(String traceId, String unionId, String mpOpenId, String phone) {
|
|
|
Lead byTraceId = this.getByTraceId(traceId);
|
|
|
if (byTraceId == null) {
|
|
|
@@ -136,7 +136,7 @@ public class LeadServiceImpl extends ServiceImpl<LeadMapper, Lead> implements IL
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- @Async("asyncExecutor")
|
|
|
+ @Async
|
|
|
public void updateAuthIndex(String traceId, Integer type) {
|
|
|
LambdaUpdateWrapper<Lead> eq = new LambdaUpdateWrapper<Lead>().eq(Lead::getTraceId, traceId);
|
|
|
if (type == 1) {
|