using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using System.Data.SqlClient; using CY.IBaseDAL; using CY.Model; using CY.Infrastructure.Query; namespace CY.IDAL { public interface IOA_DeliverPlanPaicheDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据编号获得信息 /// /// 编号 /// OA_DeliverPlan GetModelByKeyid(Guid? keyid, Guid? BuyerId, DateTime? DeliveredTime); /// /// 根据formid获得信息 /// /// 编号 /// IEnumerable GetModelByformid(Guid formid); /// /// 根据编号获得信息 /// /// 编号 /// IEnumerable GetModelByDeliveredTime(Guid FirmId, DateTime DeliverTime); /// /// 取得分页数据 /// /// 查询条件 /// 分页条件 /// IEnumerable SelectModelPageWenti(Query query, Pagination pagination); } }