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 7a7a920 commit 4378228Copy full SHA for 4378228
weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/bean/WxMaSubscribeMessage.java
@@ -65,6 +65,7 @@ public WxMaSubscribeMessage addData(Data datum) {
65
if (this.data == null) {
66
this.data = new ArrayList<>();
67
}
68
+
69
this.data.add(datum);
70
71
return this;
@@ -77,7 +78,9 @@ public String toJson() {
77
78
@lombok.Data
79
@NoArgsConstructor
80
@AllArgsConstructor
- public static class Data {
81
+ public static class Data implements Serializable {
82
+ private static final long serialVersionUID = 1L;
83
84
private String name;
85
private String value;
86
0 commit comments