using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ARW.Model;
using ARW.Model.Dto.Business.Custom.GoodsBrowsingHistorys;
using ARW.Model.Models.Business.Custom.GoodsBrowsingHistorys;
using ARW.Model.Vo.Business.Custom.GoodsBrowsingHistorys;
namespace ARW.Service.Business.IBusinessService.Custom.GoodsBrowsingHistorys
{
///
/// 商品浏览记录接口类
///
/// @author lwh
/// @date 2023-10-22
///
public interface IGoodsBrowsingHistoryService : IBaseService
{
///
/// 获取商品浏览记录分页列表
///
///
///
Task> GetGoodsBrowsingHistoryList(GoodsBrowsingHistoryQueryDto parm);
///
/// 添加或修改商品浏览记录
///
///
///
Task AddOrUpdateGoodsBrowsingHistory(GoodsBrowsingHistory parm);
}
}