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 761859c commit 56557bfCopy full SHA for 56557bf
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/message/WxMpXmlOutNewsMessage.java
@@ -5,6 +5,7 @@
5
import me.chanjar.weixin.common.api.WxConsts;
6
import me.chanjar.weixin.common.util.xml.XStreamCDataConverter;
7
8
+import java.io.Serializable;
9
import java.util.ArrayList;
10
import java.util.List;
11
@@ -39,7 +40,9 @@ public List<Item> getArticles() {
39
40
41
42
@XStreamAlias("item")
- public static class Item {
43
+ public static class Item implements Serializable {
44
+
45
+ private static final long serialVersionUID = -4971456355028904754L;
46
47
@XStreamAlias("Title")
48
@XStreamConverter(value = XStreamCDataConverter.class)
0 commit comments