luofl
2025-03-17 90f3efb3207d56b72e32065e92a8b6cac9929d54
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);
    }
}