/*********************************************************************** * Project: CoreCms * ProjectName: 核心内容管理系统 * Web: https://www.corecms.net * Author: 大灰灰 * Email: jianweie@163.com * CreateTime: 2021/1/31 21:45:10 * Description: 暂无 ***********************************************************************/ using System; using System.Collections.Generic; using System.Linq.Expressions; using System.Threading.Tasks; using CoreCms.Net.Model.Entities; using CoreCms.Net.Model.ViewModels.Basics; using CoreCms.Net.Model.ViewModels.UI; using SqlSugar; namespace CoreCms.Net.IRepository { /// /// 用户表 工厂接口 /// public interface ICoreCmsUserRepository : IBaseRepository { /// /// 获取下级推广用户数量 /// /// 父类序列 /// 1获取1级,其他为2级 /// 当月 /// Task QueryChildCountAsync(int parentId, int type = 1, bool thisMonth = false); /// /// 根据条件查询分页数据 /// /// 判断集合 /// 排序方式 /// 当前页面索引 /// 分布大小 /// /// Task> QueryPageAsync(Expression> predicate, Expression> orderByExpression, OrderByType orderByType, int pageIndex = 1, int pageSize = 20); /// /// 按天统计新会员 /// /// Task> Statistics(int day); /// /// 按天统计当天下单活跃会员 /// /// Task> StatisticsOrder(int day); } }