| | |
| | | orderInfo.setLatitude(address.getLatitude()); |
| | | orderInfo.setLongitude(address.getLongitude()); |
| | | this.baseMapper.updateById(orderInfo); |
| | | |
| | | agentProducer.sendOrderCancelDelayMsg(orderInfo.getId(), 15 * 60 * 1000L); |
| | | //过期时间修改成24小时 |
| | | agentProducer.sendOrderCancelDelayMsg(orderInfo.getId(), 24 * 60 * 60 * 1000L); |
| | | return orderInfo.getId(); |
| | | } |
| | | |
| | |
| | | |
| | | @ApiModelProperty(value = "样品,为空则代表不是样品") |
| | | private String sample; |
| | | |
| | | @ApiModelProperty(value = "重量") |
| | | private BigDecimal goodsWeight; |
| | | } |
| | |
| | | c.original_price sku_original_price, |
| | | c.present_price sku_present_price, |
| | | c.style_id sku_style_id, |
| | | c.goods_weight goodsWeight, |
| | | c.goods_id sku_goods_id |
| | | from mall_goods a |
| | | left join mall_goods_style b on a.id = b.goods_id |
| | |
| | | </select> |
| | | |
| | | <select id="selectOrderInfoUpTime" resultType="cc.mrbird.febs.mall.entity.MallOrderInfo"> |
| | | select * from mall_order_info where status=#{status} and now() > date_add(order_time,interval 15 minute) |
| | | select * from mall_order_info where status=#{status} and now() > date_add(order_time,interval 1440 minute) |
| | | </select> |
| | | |
| | | <select id="selectCntDirectOrTeam" resultType="java.lang.Integer"> |