调用dify联调客户画像

This commit is contained in:
spllzh
2025-09-20 09:45:18 +08:00
parent d321af7e7c
commit e83d803e70
42 changed files with 1029 additions and 549 deletions

View File

@@ -1,5 +1,6 @@
package com.rj.service.biz;
import com.baomidou.mybatisplus.extension.service.IService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.rj.entity.bz.DifyWorkflowAnalysis;
@@ -11,5 +12,5 @@ import org.springframework.stereotype.Service;
*/
@Service
public class DifyWorkflowAnalysisServiceImpl extends ServiceImpl<DifyWorkflowAnalysisMapper, DifyWorkflowAnalysis>
implements IDifyWorkflowAnalysisService {
implements IService<DifyWorkflowAnalysis> {
}

View File

@@ -35,3 +35,7 @@ public interface ICustomerProfileAnalysisService extends IService<CustomerProfil
*/
CustomerProfileAnalysis getByBusinessId(String businessId);
}

View File

@@ -1,10 +0,0 @@
package com.rj.service.biz;
import com.baomidou.mybatisplus.extension.service.IService;
import com.rj.entity.bz.DifyWorkflowAnalysis;
/**
* Dify工作流分析结果服务接口
*/
public interface IDifyWorkflowAnalysisService extends IService<DifyWorkflowAnalysis> {
}

View File

@@ -67,3 +67,7 @@ public class CustomerProfileAnalysisServiceImpl extends ServiceImpl<CustomerProf
}
}
}