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

com.mizhousoft.weixin.mp.domain.template.MpTemplateMessageResult Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package com.mizhousoft.weixin.mp.domain.template;

import com.mizhousoft.weixin.common.WxError;

/**
 * 消息结果
 *
 */
public class MpTemplateMessageResult extends WxError
{
	// 消息ID
	private String messageId;

	/**
	 * 获取messageId
	 * 
	 * @return
	 */
	public String getMessageId()
	{
		return messageId;
	}

	/**
	 * 设置messageId
	 * 
	 * @param messageId
	 */
	public void setMessageId(String messageId)
	{
		this.messageId = messageId;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy