| | |
| | | import com.doumee.dao.dto.DispatchDTO; |
| | | import com.doumee.dao.dto.CommentOrderDTO; |
| | | import com.doumee.dao.dto.MyOrderDTO; |
| | | import com.doumee.dao.vo.MyOrderDetailVO; |
| | | import com.doumee.dao.vo.MyOrderVO; |
| | | import com.doumee.dao.vo.OrderDetailVO; |
| | | import com.doumee.dao.vo.OrderDispatchVO; |
| | | import com.doumee.dao.vo.OrderSummaryVO; |
| | | import com.doumee.dao.vo.OverdueFeeVO; |
| | | import com.doumee.dao.vo.PayResponse; |
| | | import com.doumee.dao.vo.PriceCalculateVO; |
| | | import com.doumee.dao.vo.EstimatedDeliveryResultVO; |
| | | import com.doumee.dao.vo.*; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | |
| | | /** |
| | | * 门店支付押金(唤起微信支付) |
| | | * |
| | | * @param shopId 门店主键 |
| | | * @param memberId 用户主键 |
| | | * @return 支付响应 |
| | | */ |
| | | PayResponse payShopDeposit(Integer shopId); |
| | | PayResponse payShopDeposit(Integer memberId); |
| | | |
| | | /** |
| | | * 门店押金支付回调处理 |
| | |
| | | Double fromLat, Double fromLng, |
| | | Double toLat, Double toLng); |
| | | |
| | | /** |
| | | * 查询会员首页进行中最新订单提示 |
| | | * 查询status in (0,1,2,3,4,5)的订单,按创建时间倒序取第一条 |
| | | * |
| | | * @param memberId 会员主键 |
| | | * @return 最新进行中订单提示,无订单返回null |
| | | */ |
| | | ActiveOrderTipVO getActiveOrderTip(Integer memberId); |
| | | |
| | | } |