From ea817806367a0c6f1857625f904ee5c772aa9e5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=8D=E5=81=9A=E7=A0=81=E5=86=9C?= <599854767@qq.com> Date: Fri, 3 Dec 2021 21:59:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8A=A0=20ISysConfigService?= =?UTF-8?q?.cs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ZR.Service/System/IService/ISysConfigService.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ZR.Service/System/IService/ISysConfigService.cs diff --git a/ZR.Service/System/IService/ISysConfigService.cs b/ZR.Service/System/IService/ISysConfigService.cs new file mode 100644 index 0000000..a8c68f8 --- /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); + } +}