mirror of
https://gitcode.com/ageerle/ruoyi-ai.git
synced 2026-05-10 08:47:04 +00:00
feat: ruoyi-chat-api模块调整
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package org.ruoyi.mapper;
|
||||
|
||||
|
||||
import org.ruoyi.domain.ChatAgentManage;
|
||||
import org.ruoyi.system.domain.vo.ChatAgentManageVo;
|
||||
import org.ruoyi.common.mybatis.core.mapper.BaseMapperPlus;
|
||||
|
||||
/**
|
||||
* 智能体管理Mapper接口
|
||||
*
|
||||
* @author ageerle
|
||||
* @date 2025-04-08
|
||||
*/
|
||||
public interface ChatAgentManageMapper extends BaseMapperPlus<ChatAgentManage, ChatAgentManageVo> {
|
||||
|
||||
}
|
||||
@@ -1,15 +1,15 @@
|
||||
package org.ruoyi.mapper;
|
||||
|
||||
import org.ruoyi.common.mybatis.core.mapper.BaseMapperPlus;
|
||||
import org.ruoyi.domain.ChatAppStore;
|
||||
import org.ruoyi.domain.vo.ChatAppStoreVo;
|
||||
|
||||
import org.ruoyi.domain.ChatAppStore;
|
||||
import org.ruoyi.system.domain.vo.ChatAppStoreVo;
|
||||
import org.ruoyi.common.mybatis.core.mapper.BaseMapperPlus;
|
||||
|
||||
/**
|
||||
* 应用市场Mapper接口
|
||||
* 应用商店Mapper接口
|
||||
*
|
||||
* @author Lion Li
|
||||
* @date 2024-03-19
|
||||
* @author ageerle
|
||||
* @date 2025-04-08
|
||||
*/
|
||||
public interface ChatAppStoreMapper extends BaseMapperPlus<ChatAppStore, ChatAppStoreVo> {
|
||||
|
||||
|
||||
@@ -1,17 +1,16 @@
|
||||
package org.ruoyi.mapper;
|
||||
|
||||
|
||||
import org.ruoyi.common.mybatis.core.mapper.BaseMapperPlus;
|
||||
import org.ruoyi.domain.ChatConfig;
|
||||
import org.ruoyi.domain.vo.ChatConfigVo;
|
||||
|
||||
|
||||
/**
|
||||
* 对话配置信息Mapper接口
|
||||
* 配置信息Mapper接口
|
||||
*
|
||||
* @author Lion Li
|
||||
* @date 2024-04-13
|
||||
* @author ageerle
|
||||
* @date 2025-04-08
|
||||
*/
|
||||
public interface ChatConfigMapper extends BaseMapperPlus<ChatConfig, ChatConfigVo> {
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -4,12 +4,11 @@ import org.ruoyi.common.mybatis.core.mapper.BaseMapperPlus;
|
||||
import org.ruoyi.domain.ChatGpts;
|
||||
import org.ruoyi.domain.vo.ChatGptsVo;
|
||||
|
||||
|
||||
/**
|
||||
* gpts管理Mapper接口
|
||||
* 应用管理Mapper接口
|
||||
*
|
||||
* @author Lion Li
|
||||
* @date 2024-07-09
|
||||
* @author ageerle
|
||||
* @date 2025-04-08
|
||||
*/
|
||||
public interface ChatGptsMapper extends BaseMapperPlus<ChatGpts, ChatGptsVo> {
|
||||
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
package org.ruoyi.mapper;
|
||||
|
||||
|
||||
import org.ruoyi.common.mybatis.core.mapper.BaseMapperPlus;
|
||||
import org.ruoyi.domain.ChatMessage;
|
||||
import org.ruoyi.domain.vo.ChatMessageVo;
|
||||
|
||||
|
||||
/**
|
||||
* 聊天消息Mapper接口
|
||||
*
|
||||
* @author Lion Li
|
||||
* @date 2023-11-26
|
||||
* @author ageerle
|
||||
* @date 2025-04-08
|
||||
*/
|
||||
public interface ChatMessageMapper extends BaseMapperPlus<ChatMessage, ChatMessageVo> {
|
||||
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
package org.ruoyi.mapper;
|
||||
|
||||
import org.ruoyi.common.mybatis.core.mapper.BaseMapperPlus;
|
||||
import org.ruoyi.domain.ChatModel;
|
||||
import org.ruoyi.domain.vo.ChatModelVo;
|
||||
|
||||
/**
|
||||
* 聊天模型Mapper接口
|
||||
*
|
||||
* @author ageerle
|
||||
* @date 2025-04-08
|
||||
*/
|
||||
public interface ChatModelMapper extends BaseMapperPlus<ChatModel, ChatModelVo> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package org.ruoyi.mapper;
|
||||
|
||||
|
||||
import org.ruoyi.common.mybatis.core.mapper.BaseMapperPlus;
|
||||
import org.ruoyi.domain.ChatPackagePlan;
|
||||
import org.ruoyi.domain.vo.ChatPackagePlanVo;
|
||||
|
||||
/**
|
||||
* 套餐管理Mapper接口
|
||||
*
|
||||
* @author ageerle
|
||||
* @date 2025-04-08
|
||||
*/
|
||||
public interface ChatPackagePlanMapper extends BaseMapperPlus<ChatPackagePlan, ChatPackagePlanVo> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package org.ruoyi.mapper;
|
||||
|
||||
|
||||
import org.ruoyi.common.mybatis.core.mapper.BaseMapperPlus;
|
||||
import org.ruoyi.domain.ChatPayOrder;
|
||||
import org.ruoyi.domain.vo.ChatPayOrderVo;
|
||||
|
||||
/**
|
||||
* 支付订单Mapper接口
|
||||
*
|
||||
* @author ageerle
|
||||
* @date 2025-04-08
|
||||
*/
|
||||
public interface ChatPayOrderMapper extends BaseMapperPlus<ChatPayOrder, ChatPayOrderVo> {
|
||||
|
||||
}
|
||||
@@ -1,15 +1,15 @@
|
||||
package org.ruoyi.mapper;
|
||||
|
||||
|
||||
import org.ruoyi.common.mybatis.core.mapper.BaseMapperPlus;
|
||||
import org.ruoyi.domain.ChatPlugin;
|
||||
import org.ruoyi.domain.vo.ChatPluginVo;
|
||||
|
||||
|
||||
/**
|
||||
* 插件管理Mapper接口
|
||||
*
|
||||
* @author ageerle
|
||||
* @date 2025-03-30
|
||||
* @date 2025-04-08
|
||||
*/
|
||||
public interface ChatPluginMapper extends BaseMapperPlus<ChatPlugin, ChatPluginVo> {
|
||||
|
||||
|
||||
@@ -4,12 +4,11 @@ import org.ruoyi.common.mybatis.core.mapper.BaseMapperPlus;
|
||||
import org.ruoyi.domain.ChatVoucher;
|
||||
import org.ruoyi.domain.vo.ChatVoucherVo;
|
||||
|
||||
|
||||
/**
|
||||
* 用户兑换记录Mapper接口
|
||||
*
|
||||
* @author Lion Li
|
||||
* @date 2024-05-03
|
||||
* @author ageerle
|
||||
* @date 2025-04-08
|
||||
*/
|
||||
public interface ChatVoucherMapper extends BaseMapperPlus<ChatVoucher, ChatVoucherVo> {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user