using System; using ARW.Model.System; namespace ARW.Service.System { /// /// 参数配置service接口 /// /// @author zhaorui /// @date 2021-09-29 /// public interface ISysConfigService : IBaseService { SysConfig GetSysConfigByKey(string key); } }