using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// /// 推广金收支记录-数据库操作接口 /// public interface IPay_PromotionRecordDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 推广记录 /// /// /// /// /// /// /// /// /// /// IEnumerable SelectAllModel(Infrastructure.Query.Pagination pagination, int? PayId, int? TradingType, int? TradingState, string IsProxy, DateTime? CreatStartTime, DateTime? CreatEndTime, string DataType); IEnumerable SelectAllModel(Infrastructure.Query.Pagination pagination, int TradingType, string startDate, string endDate, string province, string city, string country); /// /// 获取上个月的推广排名 /// /// /// /// IEnumerable SelectAllModelByLastMonth(DateTime? CreatStartTime, DateTime? CreatEndTime); } }