| | |
| | | package com.ruoyi.order.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.order.model.Order; |
| | | import com.ruoyi.order.vo.OrderDetailVO; |
| | | import com.ruoyi.order.vo.OrderVO; |
| | | import model.Order; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @since 2024-11-21 |
| | | */ |
| | | public interface OrderService extends IService<Order> { |
| | | List<OrderVO> getOrderList(Integer status); |
| | | List<OrderVO> selectOrderListByUserId(Integer status,Long userId); |
| | | |
| | | OrderDetailVO getOrderDetail(Long orderId); |
| | | |
| | | boolean check(Long orderId, Long shopId); |
| | | boolean check(Order order, Integer shopId, Long userId); |
| | | |
| | | void writeOff(String code,Integer shopId); |
| | | |
| | | } |