/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* 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);
}
}