using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ARW.Model;
using ARW.Model.Dto.Business.GoodsManager.GoodsComments;
using ARW.Model.Models.Business.GoodsManager.GoodsComments;
using ARW.Model.Vo.Business.GoodsManager.GoodsComments;
namespace ARW.Service.Business.IBusinessService.GoodsManager.GoodsComments
{
///
/// 商品评价接口类
///
/// @author admin
/// @date 2023-07-15
///
public interface IGoodsCommentService : IBaseService
{
///
/// 获取商品评价分页列表
///
///
///
Task> GetGoodsCommentList(GoodsCommentQueryDto parm);
///
/// 添加或修改商品评价
///
///
///
Task AddOrUpdateGoodsComment(GoodsComment parm);
///
/// 回复
///
Task Recover(GoodsCommentRecoverDto parm);
}
}