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.Inquiry
{
///
/// 询价记录操作接口
///
public interface IRecordInfoDAL : ICommonDAL
{
///
/// 根据主键获取实体
///
///
///
Inquiry_RecordInfo GetModel(int key);
///
/// 获取我的询价列表
///
///
///
IList GetModeListByMy(Guid inquiryPersonId, DateTime startTime, DateTime endTime, int printTypeId, string firmName, int resultStatus, Pagination pa);
///
/// 获取受理询价列表
///
///
///
IList GetModeListByFirm(Guid firmId, DateTime startTime, DateTime endTime, int printTypeId, string customerName, int resultStatus, Pagination pa);
///
/// 批量删除记录
///
///
///
bool DeleteModelList(List keyIdList);
}
}