/*********************************************************************** * Project: CoreCms * ProjectName: 核心内容管理系统 * Web: https://www.corecms.net * Author: 大灰灰 * Email: jianweie@163.com * CreateTime: 2021/1/31 21:45:10 * Description: 暂无 ***********************************************************************/ using System.Threading.Tasks; using CoreCms.Net.Model.ViewModels.Basics; using CoreCms.Net.Model.ViewModels.Echarts; using CoreCms.Net.Model.ViewModels.UI; namespace CoreCms.Net.IRepository { /// /// 报表通用返回 工厂接口 /// public interface ICoreCmsReportsRepository : IBaseRepository { /// /// 获取订单销量查询返回结果 /// /// /// /// /// /// /// /// /// Task> GetGoodsSalesVolumes(string start, string end, string filter, string filterSed, string thesort, int pageIndex = 1, int pageSize = 5000); /// /// 获取商品收藏查询返回结果 /// /// /// /// /// /// /// Task> GetGoodsCollections(string start, string end, string thesort, int pageIndex = 1, int pageSize = 5000); } }