/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ using System.Threading.Tasks; using CoreCms.Net.Model.Entities; namespace CoreCms.Net.IServices { /// /// 拼团商品表 服务工厂接口 /// public interface ICoreCmsPinTuanGoodsServices : IBaseServices { /// /// 取拼团的商品信息,增加拼团的一些属性,会显示优惠价 /// /// 拼团规则 /// 商品id /// 用户序列 /// 获取拼团记录 /// 校验库存 /// 获取商品sku /// Task GetGoodsInfo(CoreCmsPinTuanRule pinTuanRuleInfo, int goodsId, int userId, bool needRecord, bool needCheckStock, bool needGoodSku); } }