From 304a26daab099bcd1e67e806ff0c3494fb421733 Mon Sep 17 00:00:00 2001 From: zren25 Date: Fri, 11 Apr 2025 15:47:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E5=8C=96=E8=BF=94=E5=9B=9E?= =?UTF-8?q?=E7=BB=93=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ai/analytic/center/job/CommonsJob.java | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100644 ai-analytic-center-biz/src/main/java/com/volvo/ai/analytic/center/job/CommonsJob.java diff --git a/ai-analytic-center-biz/src/main/java/com/volvo/ai/analytic/center/job/CommonsJob.java b/ai-analytic-center-biz/src/main/java/com/volvo/ai/analytic/center/job/CommonsJob.java deleted file mode 100644 index 9549d02..0000000 --- a/ai-analytic-center-biz/src/main/java/com/volvo/ai/analytic/center/job/CommonsJob.java +++ /dev/null @@ -1,30 +0,0 @@ -package com.volvo.ai.analytic.center.job; - -import com.volvo.ai.analytic.center.service.IntelligentCustomerService; -import com.volvo.common.core.util.ResultMsg; -import com.xxl.job.core.handler.annotation.XxlJob; -import lombok.extern.slf4j.Slf4j; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Component; -import org.springframework.web.bind.annotation.RestController; - - -@Slf4j -@Component -@RestController -public class CommonsJob { - - @Autowired - private IntelligentCustomerService intelligentCustomerService; - - - - /** - * 企微语料处理 - */ - @XxlJob("reflushTcIntelligentCustomer") - public ResultMsg reflushTcIntelligentCustomer() { - intelligentCustomerService.queryTcIntelligentCustomer(); - return ResultMsg.ok(); - } -}