We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0535f8 commit 65d8059Copy full SHA for 65d8059
1 file changed
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/freepublish/WxMpFreePublishItem.java
@@ -23,12 +23,19 @@ public class WxMpFreePublishItem implements Serializable {
23
*/
24
@SerializedName("article_id")
25
private String articleId;
26
+
27
/**
28
* 图文消息的具体内容,支持HTML标签,必须少于2万字符,小于1M,且此处会去除JS。
29
30
@SerializedName("content")
31
private WxMpFreePublishInfo content;
32
33
+ /**
34
+ * 这篇图文消息素材的最后更新时间
35
+ */
36
+ @SerializedName("update_time")
37
+ private String updateTime;
38
39
public static WxMpFreePublishItem fromJson(String json) {
40
return WxGsonBuilder.create().fromJson(json, WxMpFreePublishItem.class);
41
}
0 commit comments