| | |
| | | package org.ruoyi.service; |
| | | |
| | | import org.ruoyi.common.mybatis.core.page.PageQuery; |
| | | |
| | | import org.ruoyi.common.mybatis.core.page.TableDataInfo; |
| | | import org.ruoyi.common.mybatis.core.page.PageQuery; |
| | | import org.ruoyi.domain.bo.ChatConfigBo; |
| | | import org.ruoyi.domain.vo.ChatConfigVo; |
| | | |
| | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 对话配置信息Service接口 |
| | | * @date 2024-04-13 |
| | | * 配置信息Service接口 |
| | | * |
| | | * @author ageerle |
| | | * @date 2025-04-08 |
| | | */ |
| | | public interface IChatConfigService { |
| | | |
| | | /** |
| | | * 查询配置信息 |
| | | |
| | | */ |
| | | ChatConfigVo queryById(Long id); |
| | | |
| | |
| | | |
| | | /** |
| | | * 新增配置信息 |
| | | |
| | | */ |
| | | Boolean insertByBo(ChatConfigBo bo); |
| | | |
| | |
| | | * 校验并批量删除配置信息信息 |
| | | */ |
| | | Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid); |
| | | |
| | | /** |
| | | * 查询系统参数 |
| | | */ |
| | | List<ChatConfigVo> getSysConfigValue(String category); |
| | | } |