123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
-
- using CZFW.Framework.Model.Entity;
- using System.Collections.Generic;
- namespace CZFW.Framework.Interface
- {
- public interface ISysConfig : ILogicBase<SysConfigEntity>
- {
-
-
-
-
- IList<SysConfigEntity> GetAllSysConfig();
-
-
-
-
-
- SysConfigEntity GetSysConfigById(int id);
-
-
-
-
-
- SysConfigEntity GetSysConfigByKey(string key);
-
-
-
-
-
- IList<SysConfigEntity> GetSysConfig(params string[] keyList);
- }
- }
|