|
@@ -17,6 +17,7 @@ import org.springframework.stereotype.Service;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
+import java.util.concurrent.TimeUnit;
|
|
|
|
|
|
@Service
|
|
|
@Slf4j
|
|
@@ -63,7 +64,9 @@ public class ProjectMemberService {
|
|
|
}
|
|
|
|
|
|
@Async
|
|
|
- public void updateSaleMember(String param){
|
|
|
+ public void updateSaleMember(String param) throws InterruptedException {
|
|
|
+ TimeUnit.SECONDS.sleep(5);
|
|
|
+ log.info("同步销售项目组成员");
|
|
|
var objectMapper=new ObjectMapper();
|
|
|
param=param.substring(14,param.length()-2);
|
|
|
log.info(param);
|