吴学文
2019-07-24 8f5c84e834fdd03c897e4292bba34fd2f72e839d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.java110.event.app.cust;
 
import com.alibaba.fastjson.JSONArray;
import com.java110.core.context.AppContext;
import com.java110.event.app.AppEvent;
 
/**
 * 作废订单事件
 * Created by wuxw on 2017/4/25.
 */
public class AppDeleteCustEvent extends AppEvent {
 
 
    /**
     * 初始化客户事件
     * @param source
     * @param context 上下文对象
     * @param data 分装的数据
     */
    public AppDeleteCustEvent(Object source,AppContext context,JSONArray data){
        super(source,context);
        this.setData(data);
    }
 
 
    /**
     * Constructs a prototypical Event.
     *
     * @param source  The object on which the Event initially occurred.
     * @param context
     * @throws IllegalArgumentException if source is null.
     */
    public AppDeleteCustEvent(Object source, AppContext context) {
        super(source, context);
    }
 
}