Pu Zhibing
2025-04-07 2e6c812f367e1c51ec116a2eb1920872b46bfbea
1
2
3
4
5
6
7
8
9
10
package com.ruoyi.order.event;
 
import org.springframework.context.ApplicationEvent;
 
public class PayEvent extends ApplicationEvent {
 
    public PayEvent(Object source) {
        super(source);
    }
}