17 lines
326 B
C#
17 lines
326 B
C#
using System;
|
|
using ARW.Model.System;
|
|
|
|
namespace ARW.Service.System
|
|
{
|
|
/// <summary>
|
|
/// 参数配置service接口
|
|
///
|
|
/// @author zhaorui
|
|
/// @date 2021-09-29
|
|
/// </summary>
|
|
public interface ISysConfigService : IBaseService<SysConfig>
|
|
{
|
|
SysConfig GetSysConfigByKey(string key);
|
|
}
|
|
}
|