🎨 【公众号】发布能力获取成功发布列表接口返回增加update_time参数
This commit is contained in:
@@ -23,12 +23,19 @@ public class WxMpFreePublishItem implements Serializable {
|
|||||||
*/
|
*/
|
||||||
@SerializedName("article_id")
|
@SerializedName("article_id")
|
||||||
private String articleId;
|
private String articleId;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 图文消息的具体内容,支持HTML标签,必须少于2万字符,小于1M,且此处会去除JS。
|
* 图文消息的具体内容,支持HTML标签,必须少于2万字符,小于1M,且此处会去除JS。
|
||||||
*/
|
*/
|
||||||
@SerializedName("content")
|
@SerializedName("content")
|
||||||
private WxMpFreePublishInfo content;
|
private WxMpFreePublishInfo content;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 这篇图文消息素材的最后更新时间
|
||||||
|
*/
|
||||||
|
@SerializedName("update_time")
|
||||||
|
private String updateTime;
|
||||||
|
|
||||||
public static WxMpFreePublishItem fromJson(String json) {
|
public static WxMpFreePublishItem fromJson(String json) {
|
||||||
return WxGsonBuilder.create().fromJson(json, WxMpFreePublishItem.class);
|
return WxGsonBuilder.create().fromJson(json, WxMpFreePublishItem.class);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user