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

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

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

import com.thoughtworks.xstream.annotations.XStreamAlias;

/**
 * 回复图文消息
 * @author hybo
 *
 */
public class ReplyArticle {

	/**
	 * 图文消息标题
	 */
	@XStreamAlias("Title")
	private String title;
	
	/**
	 * 图文消息描述
	 */
	@XStreamAlias("Description")
	private String description;
	
	/**
	 * 图片链接,支持JPG、PNG格式,较好的效果为大图360*200,小图200*200
	 */
	@XStreamAlias("PicUrl")
	private String picUrl;
	
	/**
	 * 点击图文消息跳转链接
	 */
	@XStreamAlias("Url")
	private String url;

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	public String getDescription() {
		return description;
	}

	public void setDescription(String description) {
		this.description = description;
	}

	public String getPicUrl() {
		return picUrl;
	}

	public void setPicUrl(String picUrl) {
		this.picUrl = picUrl;
	}

	public String getUrl() {
		return url;
	}

	public void setUrl(String url) {
		this.url = url;
	}

	@Override
	public String toString() {
		return "ReplyArticle [Title=" + title + ", Description=" + description + ", PicUrl=" + picUrl + ", Url=" + url
				+ "]";
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy