|
@@ -41,6 +41,7 @@ import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.context.annotation.Lazy;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import java.io.IOException;
|
|
@@ -92,9 +93,6 @@ public class QwSopServiceImpl implements IQwSopService
|
|
|
@Autowired
|
|
|
private SopUserLogsMapper sopUserLogsMapper;
|
|
|
|
|
|
- @Autowired
|
|
|
- private AsyncSopService asyncSopService;
|
|
|
-
|
|
|
|
|
|
@Autowired
|
|
|
private AsyncSopTestService asyncSopTestService;
|
|
@@ -109,14 +107,17 @@ public class QwSopServiceImpl implements IQwSopService
|
|
|
private ISopUserLogsService sopUserLogsService;
|
|
|
@Autowired
|
|
|
private CompanyUserMapper companyUserMapper;
|
|
|
- @Autowired
|
|
|
+
|
|
|
private IQwSopTempVoiceService qwSopTempVoiceService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ public void setIQwSopTempVoiceService(@Lazy IQwSopTempVoiceService qwSopTempVoiceService) {
|
|
|
+ this.qwSopTempVoiceService = qwSopTempVoiceService;
|
|
|
+ }
|
|
|
@Autowired
|
|
|
private IQwSopTempDayService qwSopTempDayService;
|
|
|
@Autowired
|
|
|
private IQwSopTempRulesService qwSopTempRulesService;
|
|
|
- @Autowired
|
|
|
- private IQwSopTempContentService qwSopTempContentService;
|
|
|
|
|
|
@Autowired
|
|
|
private RocketMQTemplate rocketMQTemplate;
|