|
@@ -0,0 +1,50 @@
|
|
|
+package com.ssj.weixin.weixin.message.custom;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author sh
|
|
|
+ * @className ArticleNews
|
|
|
+ * @description TODO
|
|
|
+ * @date 2020/12/25
|
|
|
+ */
|
|
|
+public class ArticleNews {
|
|
|
+
|
|
|
+ private String title;
|
|
|
+
|
|
|
+ private String description;
|
|
|
+ private String picurl;
|
|
|
+
|
|
|
+ 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 getPicurl() {
|
|
|
+ return picurl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPicurl(String picurl) {
|
|
|
+ this.picurl = picurl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUrl() {
|
|
|
+ return url;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl(String url) {
|
|
|
+ this.url = url;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|