diff --git a/ZR.Service/System/IService/ISysConfigService.cs b/ZR.Service/System/IService/ISysConfigService.cs
new file mode 100644
index 00000000..a8c68f8f
--- /dev/null
+++ b/ZR.Service/System/IService/ISysConfigService.cs
@@ -0,0 +1,17 @@
+using System;
+using ZR.Model.Models;
+using ZR.Model.System;
+
+namespace ZR.Service.System
+{
+ ///
+ /// 参数配置service接口
+ ///
+ /// @author zhaorui
+ /// @date 2021-09-29
+ ///
+ public interface ISysConfigService: IBaseService
+ {
+ SysConfig GetSysConfigByKey(string key);
+ }
+}