ISysConfigService.cs 324 B

12345678910111213141516
  1. using System;
  2. using ZR.Model.System;
  3. namespace ZR.Service.System
  4. {
  5. /// <summary>
  6. /// 参数配置service接口
  7. ///
  8. /// @author zhaorui
  9. /// @date 2021-09-29
  10. /// </summary>
  11. public interface ISysConfigService : IBaseService<SysConfig>
  12. {
  13. SysConfig GetSysConfigByKey(string key);
  14. }
  15. }