using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; using CY.Infrastructure.Query; namespace CY.IDAL { /// /// 订单文件信息数据访问接口 /// public interface ILF_OrderFilesDAL : ICommonDAL { /// /// 删除订单文件 /// /// /// bool DeleteFiles(int OrderId); /// /// 上传文件处理 /// /// /// /// bool AddOrderFiles(EC_FirmInfo m_EC_FirmInfo, LF_OrderFile m_LF_OrderFile); /// /// 根据keyid得到实体 /// /// /// LF_OrderFile GetModel(int OrderId); /// /// 查询符合条件的文件列表 /// /// /// /// /// /// /// /// IList GetModeListByMy(Guid MemberId, DateTime startTime, DateTime endTime, string FilesName, string CustomerName,int FilesStatus, Pagination pa); /// /// 批量删除记录 /// /// /// bool DeleteModelList(List keyIdList); } }