| | |
| | | package com.ruoyi.system.service; |
| | | |
| | | import java.util.List; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.system.domain.SysConfig; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 参数配置 服务层 |
| | | * |
| | | * |
| | | * @author ruoyi |
| | | */ |
| | | public interface ISysConfigService |
| | | { |
| | | public interface ISysConfigService extends IService<SysConfig> { |
| | | /** |
| | | * 查询参数配置信息 |
| | | * |
| | | * |
| | | * @param configId 参数配置ID |
| | | * @return 参数配置信息 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 根据键名查询参数配置信息 |
| | | * |
| | | * |
| | | * @param configKey 参数键名 |
| | | * @return 参数键值 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询参数配置列表 |
| | | * |
| | | * |
| | | * @param config 参数配置信息 |
| | | * @return 参数配置集合 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 新增参数配置 |
| | | * |
| | | * |
| | | * @param config 参数配置信息 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 修改参数配置 |
| | | * |
| | | * |
| | | * @param config 参数配置信息 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 批量删除参数信息 |
| | | * |
| | | * |
| | | * @param configIds 需要删除的参数ID |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 校验参数键名是否唯一 |
| | | * |
| | | * |
| | | * @param config 参数信息 |
| | | * @return 结果 |
| | | */ |