We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aae9beb commit d615f8aCopy full SHA for d615f8a
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/freepublish/WxMpFreePublishStatus.java
@@ -42,13 +42,15 @@ public String toJson() {
42
43
@NoArgsConstructor
44
@Data
45
- public static class ArticleDetail {
+ public static class ArticleDetail implements Serializable{
46
+ private static final long serialVersionUID = 2802949203075628412L;
47
private Integer count;
48
private List<Item> item;
49
50
51
- public static class Item {
52
+ public static class Item implements Serializable{
53
+ private static final long serialVersionUID = -6496102084844816489L;
54
private Integer idx;
55
private String article_url;
56
}
0 commit comments