Pu Zhibing
2025-04-03 1f09f6daaf73bc83cceb4ae22b862b7b365635cf
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.ruoyi.order.service;
 
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 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>
 *  服务类
 * </p>
 *
 * @author luodangjia
 * @since 2024-11-21
 */
public interface RefundPassService extends IService<RefundPass> {
    
    /**
     * 申请售后
     * @param applyRefundPass
     * @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);
    
    
    /**
     * 定时查询快递信息
     */
    void taskExpress();
}