| | |
| | | package com.ruoyi.system.service;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import com.ruoyi.system.domain.SysConfig;
|
| | |
|
| | | /**
|
| | |
| | | public int updateConfig(SysConfig config);
|
| | |
|
| | | /**
|
| | | * 删除参数配置信息
|
| | | * |
| | | * @param configId 参数ID
|
| | | * @return 结果
|
| | | */
|
| | | public int deleteConfigById(Long configId);
|
| | |
|
| | | /**
|
| | | * 批量删除参数信息
|
| | | *
|
| | | * @param configIds 需要删除的参数ID
|
| | | * @return 结果
|
| | | */
|
| | | public int deleteConfigByIds(Long[] configIds);
|
| | | public void deleteConfigByIds(Long[] configIds);
|
| | |
|
| | | /**
|
| | | * 加载参数缓存数据
|
| | | */
|
| | | public void loadingConfigCache();
|
| | |
|
| | | /**
|
| | | * 清空参数缓存数据
|
| | | */
|
| | | public void clearConfigCache();
|
| | |
|
| | | /**
|
| | | * 重置参数缓存数据
|
| | | */
|
| | | public void resetConfigCache();
|
| | |
|
| | | /**
|
| | | * 校验参数键名是否唯一
|
| | |
| | | * @param config 参数信息
|
| | | * @return 结果
|
| | | */
|
| | | public String checkConfigKeyUnique(SysConfig config);
|
| | | public boolean checkConfigKeyUnique(SysConfig config);
|
| | | }
|