using System; using System.Collections.Generic; using CB.Entity; using CB.Entity.Frequency; namespace CB.Interface.Infrastructure.Frequency { //GP_KL8_BeiJing public interface IKL8BeiJingService : IRepository { /// /// 最新开奖号码--限数据抓取使用 /// /// LotteryOpenCode GetLatestOpenCodeForCatch(); /// /// 倒序取TOP多少条数据 /// /// 彩种开奖数据额外查询条件 /// IList GetTopListDesc(LotterySearchField fields); IList ToListByYear(DateTime SearchTime); IList GetListByDate(DateTime queryDate); IList ToListForTrend(long term, LotterySearchField fields); } }