Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

【公众号】草稿箱获取图文素材实体类增加图文消息素材的最后更新时间字段 #2511

Merged
merged 1 commit into from
Jan 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ public class WxMpDraftItem implements Serializable {
@SerializedName("content")
private WxMpDraftInfo content;

/**
* 本草稿的图文消息素材的最后更新时间
*/
@SerializedName("update_time")
private Long updateTime;

public static WxMpDraftItem fromJson(String json) {
return WxGsonBuilder.create().fromJson(json, WxMpDraftItem.class);
}
Expand Down