using System; using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.QH { public interface IQH_CUSTOMER_RESID : IRepository { bool Add(QH_CUSTOMER_RESID qH_CUSTOMER_RESID, ref ValidationErrors errors); List GetList(string[] resids); /// /// 获取开户列表 /// /// 分页信息 /// 客户ID /// 状态 /// 时间过滤 /// 结束时间 /// List GetList(ref Pager pager, string resid, decimal status, DateTime? stime, DateTime? etime); /// /// 设置录音 /// /// 客户ID /// 录音ID /// 录音人 /// 错误记录 /// bool SetRecord(string resid, string recordid, decimal userid, ref ValidationErrors errors); /// /// 审核开户 /// /// 客户ID /// 账号 /// 审核人 /// /// bool Check(string resid, string useraccount, decimal userid, ref ValidationErrors errors); } }