17 lines
337 B
C#
Raw Normal View History

2024-05-16 13:30:30 +08:00
using System;
2024-07-01 16:04:10 +08:00
using DOAN.Model.System;
2024-05-16 13:30:30 +08:00
2024-07-01 16:04:10 +08:00
namespace DOAN.Service.System.IService
2024-05-16 13:30:30 +08:00
{
/// <summary>
/// 参数配置service接口
///
/// @author mr.zhao
/// @date 2021-09-29
/// </summary>
public interface ISysConfigService : IBaseService<SysConfig>
{
SysConfig GetSysConfigByKey(string key);
}
}