using System; using System.Collections.Generic; using System.Linq; using System.Text; using Domain; namespace Dao { public interface IHostUpdateRepository : IRepository { IQueryable LoadAllByPage(out long total, int page, int rows, string order, string sort, int hotelID); /// /// 根据酒店ID获取第一条记录 /// /// /// HostUpdate Get(string md5, int hotelID); } }