
cn.zkdcloud.component.message.acceptMessage.normalMessage.AcceptLinkMessage 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
package cn.zkdcloud.component.message.acceptMessage.normalMessage;
import cn.zkdcloud.component.message.acceptMessage.AbstractAcceptNormalMessage;
/**
* 链接消息
*/
public class AcceptLinkMessage extends AbstractAcceptNormalMessage {
/**
* 链接标题
*/
private String title;
/**
* 链接描述
*/
private String description;
/**
* 链接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 getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy