Commit 79e0f77b by 吕明尚

订单分享接口增加用户ID

parent c7cea86e
...@@ -12,6 +12,8 @@ public class OrderVo { ...@@ -12,6 +12,8 @@ public class OrderVo {
* 订单编号 * 订单编号
*/ */
private String orderNo; private String orderNo;
private Long consumerId;
/** /**
* 支付类型(1:微信,2:支付宝) * 支付类型(1:微信,2:支付宝)
*/ */
......
...@@ -413,7 +413,7 @@ public class SConsumerCouponServiceImpl extends ServiceImpl<SConsumerCouponMappe ...@@ -413,7 +413,7 @@ public class SConsumerCouponServiceImpl extends ServiceImpl<SConsumerCouponMappe
isStoreType(item, sStore, byId); isStoreType(item, sStore, byId);
} else { } else {
item.setIsAvailable(AvailableEnum.UNAVAILABLE.getCode()); item.setIsAvailable(AvailableEnum.UNAVAILABLE.getCode());
item.setReason("下单时长等于" + timeLong + "小时,不满足优惠券门槛时长"); item.setReason("下单时长低于" + item.getMinDuration() + "小时,不满足优惠券门槛时长");
} }
break; break;
default: default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment