| | |
| | | |
| | | 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.RefundPass; |
| | | import com.ruoyi.order.vo.ApplyRefundPass; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import com.ruoyi.order.vo.OrderRefundPassList; |
| | | import com.ruoyi.order.vo.OrderRefundPassListVo; |
| | | import com.ruoyi.order.vo.RefundPassInfo; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @return |
| | | */ |
| | | R applyRefundPass(ApplyRefundPass applyRefundPass); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 管理后台获取售后管理列表数据 |
| | | * @return |
| | | */ |
| | | PageInfo<OrderRefundPassList> getOrderRefundPassList(OrderRefundPassListVo refundPassListVo); |
| | | |
| | | |
| | | /** |
| | | * 售后订单审核操作 |
| | | * @param id |
| | | * @param status |
| | | * @param passRemark |
| | | * @return |
| | | */ |
| | | R authPassStatus(Long id, Integer status, String passRemark); |
| | | |
| | | |
| | | /** |
| | | * 售后确认收货操作 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | R refundPassReceive(Long id); |
| | | |
| | | |
| | | /** |
| | | * 获取售后详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | RefundPassInfo getRefundPassInfo(Long id); |
| | | } |