46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 商品评价接口类
|
|
///
|
|
/// @author admin
|
|
/// @date 2023-07-15
|
|
/// </summary>
|
|
public interface IGoodsCommentService : IBaseService<GoodsComment>
|
|
{
|
|
/// <summary>
|
|
/// 获取商品评价分页列表
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<PagedInfo<GoodsCommentVo>> GetGoodsCommentList(GoodsCommentQueryDto parm);
|
|
|
|
|
|
/// <summary>
|
|
/// 添加或修改商品评价
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<string> AddOrUpdateGoodsComment(GoodsComment parm);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 回复
|
|
/// </summary>
|
|
Task<string> Recover(GoodsCommentRecoverDto parm);
|
|
|
|
}
|
|
}
|