/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ using System; using System.Linq.Expressions; using System.Threading.Tasks; using CoreCms.Net.Model.Entities; using CoreCms.Net.Model.ViewModels.Basics; using SqlSugar; namespace CoreCms.Net.IRepository { /// /// 促销表 工厂接口 /// public interface ICoreCmsPromotionRepository : IBaseRepository { //判断商品是否参加团购 /// /// 判断商品是否参加团购 /// /// 商品序列 /// 关联促销信息 /// 类型 /// public bool IsInGroup(int goodId, out int promotionId,int type); /// /// 查询查了并获取导航下级数据 /// /// 判断集合 /// 排序方式 /// 是否分页 /// 当前页面索引 /// 分布大小 /// /// Task> QueryPageAndChildsAsync( Expression> predicate, Expression> orderByExpression, OrderByType orderByType, bool isToPage = false, int pageIndex = 1, int pageSize = 20); } }