ITrendChartItemService.cs 385 B

1234567891011121314151617
  1. using System;
  2. using CB.Entity;
  3. namespace CB.Interface.Infrastructure
  4. {
  5. public interface ITrendChartItemService : IRepository<TrendChartItemInfo>
  6. {
  7. /// <summary>
  8. /// 根据ChartId删除走势图对应配置列表
  9. /// </summary>
  10. /// <param name="chartId"></param>
  11. /// <returns></returns>
  12. bool DeleteList(int chartId);
  13. }
  14. }