实现了一下增加接口订单评论和评论的部分方法调整一下参数
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package cn.iocoder.mall.order.api.bo;
|
||||
|
||||
/**
|
||||
*
|
||||
* 订单回复创建
|
||||
*
|
||||
* @author wtz
|
||||
* @time 2019-05-19 18:35
|
||||
*/
|
||||
public class OrderCommentReplyCreateBO {
|
||||
}
|
||||
Reference in New Issue
Block a user