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

weixin.popular.bean.message.message.NewsMessage Maven / Gradle / Ivy

Go to download

The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.

There is a newer version: 2.8.32
Show newest version
package weixin.popular.bean.message.message;

import java.util.List;

/**
 * 图文消息
 * 图文消息条数限制在10条以内,注意,如果图文数超过10,则将会无响应。
 *
 * @author LiYi
 */
public class NewsMessage extends Message {

    public NewsMessage() {
    }

    public NewsMessage(String touser, List
articles) { super(touser, "news"); this.news = new News(); this.news.setArticles(articles); } private News news; public News getNews() { return news; } public void setNews(News news) { this.news = news; } public static class News { private List
articles; public List
getArticles() { return articles; } public void setArticles(List
articles) { this.articles = articles; } } public static class Article { private String title; private String description; private String url; private String picurl; public Article(){ } public Article(String title, String description, String url, String picurl) { super(); this.title = title; this.description = description; this.url = url; this.picurl = picurl; } 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 getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getPicurl() { return picurl; } public void setPicurl(String picurl) { this.picurl = picurl; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy