调用dify
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package com.rj.mapper.biz;
|
||||
|
||||
|
||||
import com.rj.entity.bz.ConsultingScenario;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 咨询场景表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author lingma
|
||||
* @since 2025-09-02
|
||||
*/
|
||||
public interface ConsultingScenarioMapper extends BaseMapper<ConsultingScenario> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
package com.rj.mapper.biz;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.rj.entity.bz.DifyWorkflowAnalysis;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* Dify工作流分析结果Mapper接口
|
||||
*/
|
||||
@Mapper
|
||||
public interface DifyWorkflowAnalysisMapper extends BaseMapper<DifyWorkflowAnalysis> {
|
||||
}
|
||||
Reference in New Issue
Block a user