935090232@qq.com
2021-03-18 5d43370b99a03391c9271d04d3f351f0fd734dae
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
package com.matrix.system.shopXcx.api.service;
 
import com.matrix.system.shopXcx.bean.ShopRefundRecord;
 
/**
 * @author wlz
 */
public interface WxShopRefundRecordService {
    /**
     *  退款接口
     * @param id 退款记录ID
     * @return
     */
    Boolean refundToUser(String id, ShopRefundRecord shopRefundRecord);
 
    /**
     * 退款成功后发送微信提醒
     * @param shopRefundRecord
     * @return
     */
    int sendRefundInfoToUser(ShopRefundRecord shopRefundRecord);
 
    void updateGroupBuyStatus(Long orderId);
 
}