package com.bcxin.survey.wechat.request;
	/** 
	 * 客服发送文本消息 
	 *  
	 * @author 百川信 
	 * @date 2015-09-02 
	 */  
	public class PushMessage {  
		
		// 接收方openId
		private String touser;
		
		// 消息类型
		private String msgtype = "text";
		
	    // 消息内容  
	    private Text text;  

		public String getTouser() {
			return touser;
		}

		public void setTouser(String touser) {
			this.touser = touser;
		}

		public Text getText() {
			return text;
		}

		public void setText(Text text) {
			this.text = text;
		}

		public String getMsgtype() {
			return msgtype;
		}

		public void setMsgtype(String msgtype) {
			this.msgtype = msgtype;
		}  
}
