帮助中心

This commit is contained in:
2026-03-13 14:10:47 +08:00
parent 9b4768f01e
commit cd437c221f
3 changed files with 36 additions and 3 deletions

View File

@@ -75,4 +75,12 @@ public interface SysParamsService extends IService<SysParams> {
* @param keyList 内容为 {@link com.czg.constants.ParamCodeCst}的Set集合
*/
Map<String, String> getParamsByMap(String type, Set<String> keyList) throws CzgException;
/**
* 根据参数类型获取参数
*
* @param paramType 参数类型
* @return 参数列表
*/
CzgResult<List<SysParamsDTO>> getParamsByParamType(String paramType) throws CzgException;
}