20 lines
487 B
C#
20 lines
487 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using Domain;
|
||
|
||
namespace Service
|
||
{
|
||
public interface IAppMenuManager : IGenericManager<AppMenu>
|
||
{
|
||
IList<AppMenu> LoadAllByPage(out long total, int page, int rows, string order, string sort);
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
/// <param name="type">0app,1微信</param>
|
||
/// <returns></returns>
|
||
IList<AppMenu> LoadAll(int type, int hotelID);
|
||
}
|
||
}
|