xiaoyong931011
2021-04-22 440287b640ec282b2bcd3f34e617ee0c62117c3d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
 
 
    void updateGroupBuyStatus(Long orderId);
 
}