All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tmsps.ne4Weixin.message.in.event.InQrCodeEvent Maven / Gradle / Ivy

There is a newer version: 0.8.1
Show newest version
package com.tmsps.ne4Weixin.message.in.event;

/**
 * @author zhangwei [email protected] InQrCodeEvent
 */
public class InQrCodeEvent extends InEventBaseMsg {
	private static final long serialVersionUID = 1L;
	// 用户未关注时,进行关注后的事件推送
	public static final String SUBSCRIBE = "subscribe";
	// 用户已关注时的事件推送
	public static final String SCAN = "SCAN";
	// 事件KEY值,qrscene_为前缀,后面为二维码的参数值
	private String EventKey;
	private String Ticket;

	public String getEventKey() {
		return EventKey;
	}

	public void setEventKey(String eventKey) {
		EventKey = eventKey;
	}

	public String getTicket() {
		return Ticket;
	}

	public void setTicket(String ticket) {
		Ticket = ticket;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy