实现了一下增加接口订单评论和评论的部分方法调整一下参数

This commit is contained in:
wangtongzhou
2019-05-19 20:28:14 +08:00
parent 862c139cd9
commit 6cdb7e5980
9 changed files with 130 additions and 8 deletions

View File

@@ -1,5 +1,6 @@
package cn.iocoder.mall.order.api;
import cn.iocoder.mall.order.api.bo.OrderCommentCreateBO;
import cn.iocoder.mall.order.api.bo.OrderCommentInfoAndMerchantReplyBO;
import cn.iocoder.mall.order.api.bo.OrderCommentPageBO;
import cn.iocoder.mall.order.api.constant.OrderReplyUserTypeEnum;
@@ -20,7 +21,7 @@ public interface OrderCommentService {
* @param orderCommentCreateDTO
* @return
*/
Boolean createOrderComment(OrderCommentCreateDTO orderCommentCreateDTO);
OrderCommentCreateBO createOrderComment(OrderCommentCreateDTO orderCommentCreateDTO);
/**

View File

@@ -0,0 +1,17 @@
package cn.iocoder.mall.order.api.bo;
/**
*
* 订单评论创建
*
* @author wtz
* @time 2019-05-19 18:32
*
*/
public class OrderCommentCreateBO {
/**
* 订单评论 id
*/
private Integer commentId;
}

View File

@@ -0,0 +1,11 @@
package cn.iocoder.mall.order.api.bo;
/**
*
* 订单回复创建
*
* @author wtz
* @time 2019-05-19 18:35
*/
public class OrderCommentReplyCreateBO {
}