shgx_tz_mom/ZR.Service/System/IService/ISysConfigService.cs

16 lines
319 B
C#
Raw Normal View History

2021-12-03 21:59:52 +08:00
using ZR.Model.System;
2023-03-18 07:58:39 +08:00
namespace ZR.Service.System.IService
2021-12-03 21:59:52 +08:00
{
/// <summary>
/// 参数配置service接口
///
2023-05-04 18:20:18 +08:00
/// @author mr.zhao
2021-12-03 21:59:52 +08:00
/// @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);
}
}