using System; using System.Collections.Generic; using System.Linq; using System.Text; using CB.Entity; namespace CB.Interface.Infrastructure { public interface IHLJ11X5TrendChartDataService : IRepository { /// /// 前台读取走势图 /// /// 查询条件 /// IList ToList(TrendChartSearchField entity); /// /// 根据期数获取对应期数的走势遗漏信息 /// /// 走势图ID /// 期数 /// 走势图类型 /// TrendChartData GetTrendChartDataByTerm(int chartId, TrendChartType chartType, long term); } }