31 lines
760 B
C#
31 lines
760 B
C#
using Air.Model;
|
|
using Air.Model.AirAdminViewModel;
|
|
using Mini.Model;
|
|
using Mini.Model.Entity;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Mini.Services
|
|
{
|
|
public interface ICacheService : IDependency
|
|
{
|
|
/// <summary>
|
|
/// 菜单缓存
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<Bas_LeftMemuModel> GetList_LeftMemu();
|
|
|
|
/// <summary>
|
|
/// 模块导航菜单缓存
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<Bas_ModuleMenuModel> GetList_ModuleMenu();
|
|
|
|
string Get_RoleCodes(int[] roleIds);
|
|
|
|
//List<Bas_ModuleMenuModel> GetList_ModuleMenu_b2b();
|
|
//List<Air_CityPort> GetList_AiryCityPort();
|
|
|
|
List<Bas_Supplier> GetList_BasSupplier();
|
|
}
|
|
}
|