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

top.hmtools.wxmp.message.reply.model.ReplyImageMessage Maven / Gradle / Ivy

The newest version!
package top.hmtools.wxmp.message.reply.model;

import com.thoughtworks.xstream.XStream;
import com.thoughtworks.xstream.annotations.XStreamAlias;

import top.hmtools.wxmp.core.model.message.BaseMessage;

/**
 * 回复图片消息
 * {@code
 * 
	
	
	12345678
	
	
		
	

 * }
 * @author hybo
 *
 */
public class ReplyImageMessage extends BaseMessage {

	/**
	 * 
	 */
	private static final long serialVersionUID = -3448579939645443519L;
	
	/**
	 * 图片信息
	 */
	@XStreamAlias("Image")
	private ReplyImage image;

	public ReplyImage getImage() {
		return image;
	}

	public void setImage(ReplyImage image) {
		this.image = image;
	}

	public static long getSerialversionuid() {
		return serialVersionUID;
	}

	@Override
	public void configXStream(XStream xStream) {
		
	}

	@Override
	public String toString() {
		return "ReplyImageMessage [image=" + image + ", toUserName=" + toUserName + ", fromUserName=" + fromUserName
				+ ", createTime=" + createTime + ", msgType=" + msgType + ", msgId=" + msgId + "]";
	}


	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy