
cn.zkdcloud.component.message.acceptMessage.normalMessage.AcceptTextMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weChat Show documentation
Show all versions of weChat Show documentation
we can use it easy to build weChat
The newest version!
package cn.zkdcloud.component.message.acceptMessage.normalMessage;
import cn.zkdcloud.component.message.acceptMessage.AbstractAcceptNormalMessage;
/**
* 文本消息
* Created by zk on 2016/10/30.
*/
public class AcceptTextMessage extends AbstractAcceptNormalMessage {
/**
* 文本消息内容
*/
private String content;
public AcceptTextMessage() {
this.content = "success";
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy