wuxw7
2018-04-13 3de85d01308c5efa0bc77d4a02fdc9a16d5aa9fb
OrderService/src/test/java/com/java110/order/type/AppCustEvent.java
@@ -1,6 +1,7 @@
package com.java110.order.type;
import com.java110.core.event.AppEvent;
import com.java110.core.context.AppContext;
/**
 * 客户事件
@@ -8,19 +9,14 @@
 */
public class AppCustEvent extends AppEvent {
    private String custInfo;
    /**
     * Constructs a prototypical Event.
     *
     * @param source The object on which the Event initially occurred.
     * @throws IllegalArgumentException if source is null.
     */
    public AppCustEvent(Object source,String custInfo) {
        super(source);
        this.custInfo = custInfo;
    public AppCustEvent(Object source, AppContext context) {
        super(source,context);
    }
    public String getCustInfo() {
        return custInfo;
    }
}