using System; using System.Collections.Generic; using CB.Entity; namespace CB.Interface.Infrastructure { //DT_TrendChartItem public interface ITrendMissDataService : IRepository { /// /// 批量保存数据 /// /// /// bool BatchSave(IList list); /// /// 获取本期遗漏结果集 /// /// 走势图ID /// 期号 /// IList GetMissDataList(int id, long term); } }