| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.common.core.web.page.PageInfo; |
| | | import com.ruoyi.order.model.Order; |
| | | import com.ruoyi.order.vo.*; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | |
| | | * @param orderPageList |
| | | * @return |
| | | */ |
| | | List<OrderPageListVo> getOrderPageList(OrderPageList orderPageList); |
| | | PageInfo<OrderPageListVo> getOrderPageList(OrderPageList orderPageList); |
| | | |
| | | |
| | | /** |
| | |
| | | * @param code |
| | | * @return |
| | | */ |
| | | R confirmDelivery(String orderId, String code); |
| | | R confirmDelivery(Long orderId, String code); |
| | | |
| | | |
| | | /** |