|
@@ -2,14 +2,13 @@ package com.rongwei.bscommon.sys.service.impl;
|
|
|
|
|
|
|
|
|
import com.rongwei.bscommon.sys.dao.SqlServerMapper;
|
|
|
-import com.rongwei.bscommon.sys.service.ScheduledTasksServiceBySqlServer;
|
|
|
+import com.rongwei.bscommon.sys.service.ScheduledTasksServiceBySqlServerService;
|
|
|
import com.rongwei.bsentity.domain.PmProject;
|
|
|
import com.rongwei.bsentity.domain.ZProject;
|
|
|
import org.apache.commons.collections4.ListUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
-import java.util.Arrays;
|
|
|
import java.util.List;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
@@ -20,7 +19,7 @@ import java.util.stream.Collectors;
|
|
|
* @date 2024/12/04
|
|
|
*/
|
|
|
@Service
|
|
|
-public class ScheduledTasksServiceBySqlServerImpl implements ScheduledTasksServiceBySqlServer {
|
|
|
+public class ScheduledTasksServiceBySqlServerServiceImpl implements ScheduledTasksServiceBySqlServerService {
|
|
|
@Autowired
|
|
|
private SqlServerMapper sqlServerMapper;
|
|
|
@Autowired
|
|
@@ -58,6 +57,11 @@ public class ScheduledTasksServiceBySqlServerImpl implements ScheduledTasksServi
|
|
|
});
|
|
|
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void userAndOrgSync() {
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|