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

net.sf.weixinmp.inbound.plain.InboundTextMessage Maven / Gradle / Ivy

The newest version!
package net.sf.weixinmp.inbound.plain;

import net.sf.weixinmp.inbound.InboundMessage;
/**
 * 文本消息

 
 
  
 1348831860
 
 
 1234567890123456
 
参数	描述
ToUserName	开发者微信号
FromUserName	发送方帐号(一个OpenID)
CreateTime	消息创建时间 (整型)
MsgType	text
Content	文本消息内容
MsgId	消息id,64位整型
 * @author Alex
 *
 */
public class InboundTextMessage extends InboundMessage{

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private String content;
	public String getContent() {
		return content;
	}
	public void setContent(String content) {
		this.content = content;
	}
	@Override
	public String toString() {
		return "TextMessage [content=" + content + ", "
				+ super.toString() + "]";
	}
	
}	




© 2015 - 2025 Weber Informatics LLC | Privacy Policy