using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// /// 电子商务系统兑换记录-数据库操作接口 /// public interface IEC_ExchangeRecordDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 分页查询 /// /// /// /// /// /// /// IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid MemberId, string MemberName, string PrizeName, int? Status); /// /// 根据编号获得信息 /// /// 编号 /// EC_ExchangeRecord GetModelByKeyid(int? Keyid); /// /// 新增 /// /// /// /// /// /// bool InserModel(EC_ExchangeRecord m_EC_ExchangeRecord, EC_PrizeInfo m_EC_PrizeInfo, Pay_PaymentAccount m_Pay_PaymentAccount, Pay_ScoreRecord m_Pay_ScoreRecord); } }