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

com.riversoft.weixin.qy.message.json.NewsMessage Maven / Gradle / Ivy

There is a newer version: 0.9.8
Show newest version
package com.riversoft.weixin.qy.message.json;

import com.riversoft.weixin.common.message.MsgType;
import com.riversoft.weixin.common.message.News;

/**
 * Created by exizhai on 9/26/2015.
 */
public class NewsMessage extends JsonMessage {

    private News news;

    public NewsMessage() {
        this.msgType = MsgType.news;
    }

    public News getNews() {
        return news;
    }

    public void setNews(News news) {
        this.news = news;
    }

    public NewsMessage news(News news) {
        this.news = news;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy