|
@@ -20,6 +20,7 @@ import com.fs.sop.mapper.QwSopMapper;
|
|
|
import com.fs.sop.mapper.SopUserLogsMapper;
|
|
|
import com.fs.sop.service.*;
|
|
|
import com.fs.sop.vo.QwSopLogsDoSendListTVO;
|
|
|
+import com.fs.store.service.IFsUserCourseCountService;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -82,6 +83,9 @@ public class CommonController {
|
|
|
@Autowired
|
|
|
private ISopUserLogsService iSopUserLogsService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private IFsUserCourseCountService userCourseCountService;
|
|
|
+
|
|
|
|
|
|
@GetMapping("/testSop")
|
|
|
public R testSop() throws Exception {
|
|
@@ -194,8 +198,7 @@ public class CommonController {
|
|
|
private SopLogsChatTaskService sopLogsChatTaskService;
|
|
|
@GetMapping("/test2")
|
|
|
public String selectChatSopUserLogsListByTime() throws Exception {
|
|
|
- System.out.println("test2");
|
|
|
- // sopLogsChatTaskService.createAiChatSopLogs();
|
|
|
+ userCourseCountService.insertFsUserCourseCountTask();
|
|
|
return "s";
|
|
|
}
|
|
|
|