package com.zy.asrs.wms.common.event; import org.springframework.context.ApplicationEvent; public class OrderBatchEvent extends ApplicationEvent { private String orderId; public OrderBatchEvent(Object source, String orderId) { super(source); this.orderId = orderId; } public String getOrderId() { return orderId; } }