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