using System.Collections.Generic; using Znyc.Admin.Commons.IServices; using Znyc.Admin.Security.Dtos; using Znyc.Admin.Security.Entitys; namespace Znyc.Admin.Security.IServices { /// /// /// public interface IAPPService : IService { /// /// 获取app对象 /// /// 应用ID /// 应用密钥AppSecret /// APP GetAPP(string appid, string secret); /// /// 获取app对象 /// /// 应用ID /// APP GetAPP(string appid); /// /// /// /// IList SelectApp(); /// /// 更新可用的应用到缓存 /// void UpdateCacheAllowApp(); } }