using System; using System.Collections.Generic; using System.Linq; using System.Text; using Domain; namespace Dao { public interface ISysUserRepository : IRepository { /// /// /// /// /// /// /// /// /// 0:组用户,1酒店用户 /// /// IQueryable LoadAllByPage(out long total, int page, int rows, string order, string sort, int type, int? groupId, int? hotelID); SysUsers Get(string account); IList GetByRole(int roleId); IList GetByGroup(Group group); } }