RegisterEvent.java
686 Bytes
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
38
39
40
41
package com.yoho.error.event;
/**
* 推送事件
*
* @author hugufei
*
*/
public class RegisterEvent extends CommonEvent {
private static final long serialVersionUID = 5805800371910913724L;
private String phone;// 手机号
private String type;// 来源
public RegisterEvent(String name, String phone, String type) {
super(name);
this.phone = phone;
this.type = type;
}
public static long getSerialVersionUID() {
return serialVersionUID;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}