using System; using System.Collections.Generic; using System.Linq; using System.Text; using Domain; namespace Service { public interface IAppMenuManager : IGenericManager { IList LoadAllByPage(out long total, int page, int rows, string order, string sort); /// /// /// /// 0app,1微信 /// IList LoadAll(int type, int hotelID); } }