using JNPF.Systems.Entitys.Dto.SysConfig; using JNPF.Systems.Entitys.System; namespace JNPF.Systems.Interfaces.System; /// /// 系统配置 /// 版 本:V3.2 /// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com) /// 日 期:2021-06-01. /// public interface ISysConfigService { /// /// 系统配置信息. /// /// 分类 /// 键 /// Task GetInfo(string category, string key); /// /// 获取系统配置. /// /// Task GetInfo(); }