瀏覽代碼

feature 解决引入流程导致启动报错的维问题

xiahan 1 年之前
父節點
當前提交
7ac1133d07

+ 2 - 2
cx-aps/cx-aps-common/src/main/java/com/rongwei/bscommon/sys/service/impl/ReportCheckServiceImpl.java

@@ -13,7 +13,7 @@ import com.rongwei.rwcommon.base.R;
 import com.rongwei.rwcommon.base.exception.CustomException;
 import com.rongwei.wfentity.sys.RunTaskDo;
 import com.rongwei.wfentity.sys.vo.RunTaskVo;
-import com.rongwei.wfserver.wfcommon.core.service.WorkFlowService;
+import com.rongwei.wfserver.wfcommon.core.service.impl.WorkFlowServiceImpl;
 import com.rongwei.wfserver.wfcommon.sys.service.RunTaskService;
 import jodd.util.StringUtil;
 import org.apache.commons.lang.StringUtils;
@@ -69,7 +69,7 @@ public class ReportCheckServiceImpl implements ReportCheckService {
     @Autowired
     private ApsBlankOrderService apsBlankOrderService;
     @Autowired
-    private WorkFlowService workFlowService;
+    private WorkFlowServiceImpl workFlowService;
     @Autowired
     private RunTaskService runTaskService;
 

+ 1 - 1
cx-aps/cx-aps-server/src/main/java/com/rongwei/ApsBusinessServerApplication.java

@@ -11,7 +11,7 @@ import org.springframework.scheduling.annotation.EnableAsync;
 @SpringBootApplication
 @EnableDiscoveryClient
 @EnableFeignClients
-@MapperScan("com.rongwei.*.*.dao")
+@MapperScan({"com.rongwei.*.*.dao", "com.rongwei.*.*.*.dao"})
 public class ApsBusinessServerApplication {
 
     public static void main(String[] args) {