using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ARW.Model; using ARW.Model.Dto.Api.Custom.GoodsCollections; using ARW.Model.Models.Business.Custom.GoodsCollections; using ARW.Model.Vo.Api.Custom.GoodsCollections; namespace ARW.Service.Api.IBusinessService.Custom.GoodsCollections { /// /// 商品收藏接口类Api /// /// @author lwh /// @date 2023-10-22 /// public interface IGoodsCollectionServiceApi : IBaseService { /// /// 获取商品收藏分页列表(Api) /// /// /// Task> GetGoodsCollectionListApi(GoodsCollectionQueryDtoApi parm); /// /// 添加或修改商品收藏 /// /// /// Task AddOrUpdateGoodsCollection(GoodsCollection parm); } }