提交 | 用户 | 时间 | ||
722af2 | 1 | package com.dl.common.core.service; |
X | 2 | |
3 | /** | |
4 | * 通用 参数配置服务 | |
5 | * | |
6 | * @author Lion Li | |
7 | */ | |
8 | public interface ConfigService { | |
9 | ||
10 | /** | |
11 | * 根据参数 key 获取参数值 | |
12 | * | |
13 | * @param configKey 参数 key | |
14 | * @return 参数值 | |
15 | */ | |
16 | String getConfigValue(String configKey); | |
17 | ||
18 | } |