| | |
| | | package com.ruoyi.order.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import model.RefundPass; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.order.model.RefundPass; |
| | | import com.ruoyi.order.vo.ApplyRefundPass; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @since 2024-11-21 |
| | | */ |
| | | public interface RefundPassService extends IService<RefundPass> { |
| | | |
| | | /** |
| | | * 申请售后 |
| | | * @param applyRefundPass |
| | | * @return |
| | | */ |
| | | R applyRefundPass(ApplyRefundPass applyRefundPass); |
| | | |
| | | } |