package org.jeecg.modules.system.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import org.jeecg.modules.system.entity.SysParams;
|
|
import javax.validation.constraints.NotNull;
|
import java.util.List;
|
|
/**
|
* @Description: 系统参数表
|
* @Author: server-boot
|
* @Date: 2020-12-28
|
* @Version: V1.0
|
*/
|
public interface ISysParamsService extends IService<SysParams> {
|
/**
|
* 根据参数键获取值
|
* @param settingKey 键
|
*
|
* */
|
List<SysParams> getSysPramsBySettingKey(String settingKey);
|
|
/**
|
* 查询配置信息
|
* @param keyName
|
* @return
|
*/
|
SysParams getSysPramBySettingKey(@NotNull String keyName);
|
}
|