luofl
2025-03-17 90f3efb3207d56b72e32065e92a8b6cac9929d54
1
2
3
4
5
6
7
8
9
10
11
package com.ruoyi.order.event;
 
import org.springframework.context.ApplicationEvent;
 
public class ConfirmDeliveryEvent extends ApplicationEvent {
 
 
    public ConfirmDeliveryEvent(Object source) {
        super(source);
    }
}