using System; using CB.Entity; using System.Collections.Generic; using System.Data; namespace CB.Interface.Infrastructure { public interface ITrendChartService : IRepository { /// /// 根据部分走势图信息获取完整实体类 /// /// /// TrendChartInfo Get(TrendChartInfo entity); /// /// 更新走势图表智能推荐关联 /// /// /// void UpdateTrendSmart(int startId, int endId); /// /// 获取关联的走势图表信息 /// /// /// IList GetTrendSmartList(int chartId, int topSize); } }