using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ARW.Model; using ARW.Model.Dto.Api.GoodsManager.GoodsComments; using ARW.Model.Models.Business.GoodsManager.GoodsComments; using ARW.Model.Vo.Api.GoodsManager.GoodsComments; namespace ARW.Service.Api.IBusinessService.GoodsManager.GoodsComments { /// /// 商品评价接口类Api /// /// @author admin /// @date 2023-07-17 /// public interface IGoodsCommentServiceApi : IBaseService { /// /// 获取商品评价分页列表(Api) /// /// /// Task> GetGoodsCommentListApi(GoodsCommentQueryDtoApi parm); /// /// 获取商品评价详情(Api) /// /// /// Task> GetGoodsDetailsComments(GoodsCommentDtoApi parm); /// /// 获取商品详情页评论数(Api) /// /// /// Task GetGoodsDetailsCommentsCount(GoodsCommentDtoApi parm); } }