后端:尝试引入 ES 服务
This commit is contained in:
@@ -87,7 +87,7 @@ public interface OrderService {
|
||||
* @param orderDelivery
|
||||
* @return
|
||||
*/
|
||||
CommonResult orderDelivery(OrderDeliveryDTO orderDelivery);
|
||||
CommonResult<OrderRecipientBO> orderDelivery(OrderDeliveryDTO orderDelivery);
|
||||
|
||||
/**
|
||||
* 更新订单 - 备注
|
||||
@@ -133,14 +133,6 @@ public interface OrderService {
|
||||
*/
|
||||
CommonResult deleteOrder(Integer id);
|
||||
|
||||
/**
|
||||
* 监听支付动作
|
||||
*
|
||||
* mq 更新 payStatus
|
||||
*/
|
||||
@Deprecated
|
||||
CommonResult listenerPayment();
|
||||
|
||||
/**
|
||||
* 更新订单支付成功
|
||||
*
|
||||
|
||||
@@ -16,7 +16,7 @@ public class CalcSkuPriceBO {
|
||||
*/
|
||||
private PromotionActivityBO fullPrivilege;
|
||||
/**
|
||||
* 电视和折扣促销活动
|
||||
* 限时折扣促销活动
|
||||
*/
|
||||
private PromotionActivityBO timeLimitedDiscount;
|
||||
/**
|
||||
|
||||
@@ -20,12 +20,13 @@ public class OrderDeliveryDTO implements Serializable {
|
||||
* 订单id
|
||||
*/
|
||||
private Integer orderId;
|
||||
// TODO 芋艿,物流方式。会存在无需物流的情况
|
||||
/**
|
||||
* 物流 (字典)
|
||||
* 物流公司 (字典)
|
||||
*/
|
||||
private Integer logistics;
|
||||
/**
|
||||
* 物流编号
|
||||
* 物流单编号
|
||||
*/
|
||||
private String logisticsNo;
|
||||
|
||||
@@ -36,4 +37,5 @@ public class OrderDeliveryDTO implements Serializable {
|
||||
* 订单 orderItemId
|
||||
*/
|
||||
private List<Integer> orderItemIds;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user