ZrAdminNetCore/ZR.Service/System/IService/ISysConfigService.cs
不做码农 77bc846ff1 fix bug
2021-12-05 08:44:20 +08:00

17 lines
323 B
C#

using System;
using ZR.Model.System;
namespace ZR.Service.System
{
/// <summary>
/// 参数配置service接口
///
/// @author zhaorui
/// @date 2021-09-29
/// </summary>
public interface ISysConfigService: IBaseService<SysConfig>
{
SysConfig GetSysConfigByKey(string key);
}
}