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.GoodsBrowsingHistorys;
using ARW.Model.Dto.Business.Custom.GoodsBrowsingHistorys;
using ARW.Model.Models.Business.Custom.GoodsBrowsingHistorys;
using ARW.Model.Vo.Api.Custom.GoodsBrowsingHistorys;
namespace ARW.Service.Api.IBusinessService.Custom.GoodsBrowsingHistorys
{
///
/// 商品浏览记录接口类Api
///
/// @author lwh
/// @date 2023-10-22
///
public interface IGoodsBrowsingHistoryServiceApi : IBaseService
{
///
/// 获取商品浏览记录分页列表(Api)
///
///
///
Task> GetGoodsBrowsingHistoryListApi(GoodsBrowsingHistoryQueryDtoApi parm);
///
/// 添加或修改商品浏览记录(Api)
///
///
///
Task AddOrUpdateGoodsBrowsingHistory(GoodsBrowsingHistory parm);
}
}