教育训练处考试制证系统后端
heheng
2025-02-20 c269821bdd06a8eb452b09c1effe14efd646b9d7
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.gkhy.exam.pay.service;
 
import java.util.Date;
 
/**
 * @author admin
 */
public interface PaymentService {
 
    void notifyConfirm(String orderNo);
 
    void paySuccess(String orderNo, Date payTime);
}