17 lines
334 B
C#
Raw Normal View History

2024-11-28 13:36:05 +08:00
using System;
2024-12-03 09:25:16 +08:00
using DOAN.Model.System;
2024-11-28 13:36:05 +08:00
2024-12-03 09:25:16 +08:00
namespace DOAN.ServiceCore.Services
2024-11-28 13:36:05 +08:00
{
/// <summary>
/// 参数配置service接口
///
/// @author mr.zhao
/// @date 2021-09-29
/// </summary>
public interface ISysConfigService : IBaseService<SysConfig>
{
SysConfig GetSysConfigByKey(string key);
}
}