Pu Zhibing
2024-12-06 7dc4502634b3b5a982a9899dbf8e36d0b016231c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.ruoyi.order.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
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>
 *  服务类
 * </p>
 *
 * @author luodangjia
 * @since 2024-11-21
 */
public interface RefundPassService extends IService<RefundPass> {
    
    /**
     * 申请售后
     * @param applyRefundPass
     * @return
     */
    R applyRefundPass(ApplyRefundPass applyRefundPass);
 
}