后端:尝试引入 ES 服务

This commit is contained in:
YunaiV
2019-04-24 00:32:09 +08:00
parent 6fdec47430
commit 7fcb9da38e
29 changed files with 577 additions and 44 deletions

View File

@@ -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();
/**
* 更新订单支付成功
*

View File

@@ -16,7 +16,7 @@ public class CalcSkuPriceBO {
*/
private PromotionActivityBO fullPrivilege;
/**
* 电视和折扣促销活动
* 限时折扣促销活动
*/
private PromotionActivityBO timeLimitedDiscount;
/**

View File

@@ -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;
}