e80df919
atao
init
|
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
|
/**
* Copyright (c) 2011-2014, L.cm 卢春梦 (qq596392912@gmail.com).
*
* Licensed under the Apache License, Version 2.0 (the "License");
*/
package com.jfinal.wxaapp.msg.bean;
import com.jfinal.wxaapp.msg.MsgModel;
public class WxaUserEnterSessionMsg extends WxaMsg {
private static final long serialVersionUID = 1909321793183745030L;
protected String event;
protected String sessionFrom;
public WxaUserEnterSessionMsg(MsgModel msgModel) {
super(msgModel);
this.event = msgModel.getEvent();
this.sessionFrom = msgModel.getSessionFrom();
}
public String getEvent() {
return event;
}
public String getSessionFrom() {
return sessionFrom;
}
}
|