不做码农 be515339fe ♻️代码重构
2023-09-02 17:55:34 +08:00

17 lines
333 B
C#

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