2021-12-03 21:59:52 +08:00
|
|
|
using System;
|
|
|
|
|
using ZR.Model.System;
|
|
|
|
|
|
|
|
|
|
namespace ZR.Service.System
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 参数配置service接口
|
|
|
|
|
///
|
|
|
|
|
/// @author zhaorui
|
|
|
|
|
/// @date 2021-09-29
|
|
|
|
|
/// </summary>
|
2022-03-19 08:04:08 +08:00
|
|
|
public interface ISysConfigService : IBaseService<SysConfig>
|
2021-12-03 21:59:52 +08:00
|
|
|
{
|
|
|
|
|
SysConfig GetSysConfigByKey(string key);
|
|
|
|
|
}
|
|
|
|
|
}
|