RegisterEvent.java 686 Bytes
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;
	}
}