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

com.github.sd4324530.fastweixin.company.message.QYTextMsg Maven / Gradle / Ivy

There is a newer version: 1.3.15
Show newest version
package com.github.sd4324530.fastweixin.company.message;/**
 * Created by Nottyjay on 2015/6/12.
 */

import com.alibaba.fastjson.annotation.JSONField;

import java.util.Map;

/**
 * ====================================================================
 * 上海聚攒软件开发有限公司
 * --------------------------------------------------------------------
 *
 * @author Nottyjay
 * @version 1.0.beta
 * ====================================================================
 */
public class QYTextMsg extends QYBaseMsg {

    @JSONField(name = "text")
    private Text text;

    public QYTextMsg() {
        this.setMsgType("text");
    }

    public QYTextMsg(String content) {
        this.text = new Text(content);
    }

    public Text getText() {
        return text;
    }

    public void setText(Text text) {
        this.text = text;
    }

    public void setConetnt(String content){
        this.text = new Text(content);
    }

    public static class Text{
        @JSONField(name = "content")
        private String content;

        public Text(String content) {
            this.content = content;
        }

        public String getContent() {
            return content;
        }

        public void setContent(String content) {
            this.content = content;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy