using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.Infrastructure.Domain; using CY.Infrastructure.Query; namespace CY.IBaseDAL { public interface IGetAllModel where T : IAggregateRoot { /// /// 按条件查询数据 /// /// IEnumerable SelectAllModel(Query query); ///// ///// 按条件查询数据 ///// ///// //T SelectModel(Query query); } }