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