using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Infrastructure.Query; using CY.Model; namespace CY.IDAL.Inquiry { /// /// 跟单记录操作接口 /// public interface IFollowRecordInfoDAL : ICommonDAL { /// /// 获取跟单记录列表 /// /// /// IList GetModeList(int recordId,Pagination pa); /// /// 批量删除记录 /// /// /// bool DeleteModelList(List keyIdList); } }