1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package cn.iocoder.yudao.module.product.api.comment;
|
| import cn.iocoder.yudao.module.product.api.comment.dto.ProductCommentCreateReqDTO;
|
| /**
| * 产品评论 API 接口
| *
| * @author HUIHUI
| */
| public interface ProductCommentApi {
|
| /**
| * 创建评论
| *
| * @param createReqDTO 评论参数
| * @return 返回评论创建后的 id
| */
| Long createComment(ProductCommentCreateReqDTO createReqDTO);
|
| }
|
|