You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
554 B
C#
29 lines
554 B
C#
|
|
|
|
//----------SysConfig开始----------
|
|
|
|
|
|
using Admin.Core.Model.Sys;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.Core.IService.ISys
|
|
{
|
|
/// <summary>
|
|
/// 参数配置表IService
|
|
/// </summary>
|
|
public interface ISysConfigService : IBaseServices<SysConfig>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 检查参数Key是否存在
|
|
/// </summary>
|
|
/// <param name="sysConfig"></param>
|
|
/// <returns></returns>
|
|
Task<bool> CheckConfigKeyUnique(SysConfig sysConfig);
|
|
|
|
}
|
|
}
|
|
|
|
//----------SysConfig结束----------
|
|
|