xiangpei
2025-05-14 0e63eb88f8b83ec075d1d5cbba9ed84da6c96193
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
package cn.lili.modules.payment.service;
 
import cn.lili.modules.payment.kit.dto.PaymentSuccessParams;
 
/**
 * 支付日志 业务层
 *
 * @author Chopper
 * @since 2020-12-19 09:25
 */
public interface PaymentService {
 
    /**
     * 支付成功通知
     *
     * @param paymentSuccessParams 支付成功回调参数
     */
    void success(PaymentSuccessParams paymentSuccessParams);
 
 
    /**
     * 平台支付成功
     *
     * @param paymentSuccessParams 支付成功回调参数
     */
    void adminPaySuccess(PaymentSuccessParams paymentSuccessParams);
 
}