1234567891011121314151617 |
- using System;
- using CB.Entity;
- namespace CB.Interface.Infrastructure
- {
- public interface ITrendChartItemService : IRepository<TrendChartItemInfo>
- {
- /// <summary>
- /// 根据ChartId删除走势图对应配置列表
- /// </summary>
- /// <param name="chartId"></param>
- /// <returns></returns>
- bool DeleteList(int chartId);
- }
- }
|