| | |
| | | package cc.mrbird.febs.mall.service; |
| | | |
| | | import cc.mrbird.febs.mall.dto.AddOrderDto; |
| | | import cc.mrbird.febs.mall.dto.OrderListDto; |
| | | import cc.mrbird.febs.mall.dto.PayOrderDto; |
| | | import cc.mrbird.febs.mall.dto.*; |
| | | import cc.mrbird.febs.mall.entity.MallOrderInfo; |
| | | import cc.mrbird.febs.mall.vo.OrderDetailVo; |
| | | import cc.mrbird.febs.mall.vo.OrderListVo; |
| | |
| | | OrderDetailVo findOrderDetailsById(Long id); |
| | | |
| | | void confirmOrder(Long id); |
| | | |
| | | void delOrder(Long id); |
| | | |
| | | void applyRefund(AddRefundDto addRefundDto); |
| | | |
| | | void refundExpress(RefundExpressDto refundExpressDto); |
| | | } |