
org.jeewx.api.wxsendmsg.model.WxArticle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin4j Show documentation
Show all versions of weixin4j Show documentation
微信和钉钉开发SDK,主要提供微信、企业微信、钉钉的JAVA封装,降低集成难度,让API变简单
The newest version!
package org.jeewx.api.wxsendmsg.model;
/**
* 图文消息
* @author LIAIJUN
*
*/
public class WxArticle {
/** 图文消息缩略图的media_id */
private String thumb_media_id;
/** 图文消息的作者 */
private String author;
/** 图文消息的标题 */
private String title;
/** 在图文消息页面点击“阅读原文”后的页面 */
private String content_source_url;
/** 图文消息页面的内容,支持HTML标签 */
private String content;
/** 图文消息的描述 */
private String digest;
/** 是否显示封面,1为显示,0为不显示 */
private String show_cover_pic;
private String fileName;
private String filePath;
public String getThumb_media_id() {
return thumb_media_id;
}
public void setThumb_media_id(String thumb_media_id) {
this.thumb_media_id = thumb_media_id;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContent_source_url() {
return content_source_url;
}
public void setContent_source_url(String content_source_url) {
this.content_source_url = content_source_url;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getDigest() {
return digest;
}
public void setDigest(String digest) {
this.digest = digest;
}
public String getShow_cover_pic() {
return show_cover_pic;
}
public void setShow_cover_pic(String show_cover_pic) {
this.show_cover_pic = show_cover_pic;
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getFilePath() {
return filePath;
}
public void setFilePath(String filePath) {
this.filePath = filePath;
}
@Override
public String toString() {
return "WxArticle [thumb_media_id=" + thumb_media_id + ", author=" + author + ", title=" + title + ", content_source_url=" + content_source_url + ", content=" + content + ", digest=" + digest + ", show_cover_pic=" + show_cover_pic + ", fileName=" + fileName + ", filePath=" + filePath + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy