using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEAWCS_Core.BaseServices; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_ISystemServices { public interface ISys_ConfigService : IService { /// /// 获取所有系统配置 /// /// List GetAll(); /// /// 根据类别获取系统配置 /// /// 类别 /// List GetConfigsByCategory(string category); /// /// 根据类别和Key获取系统配置 /// /// 类别 /// 配置Key /// Sys_Config GetByConfigKey(string category, string configKey); } }