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 d30ac74 commit a210b85Copy full SHA for a210b85
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/message/WxMpXmlMessage.java
@@ -54,6 +54,9 @@ public class WxMpXmlMessage implements Serializable {
54
@XStreamConverter(value = XStreamCDataConverter.class)
55
private String content;
56
57
+ @XStreamAlias("MenuId")
58
+ private Long menuId;
59
+
60
@XStreamAlias("MsgId")
61
private Long msgId;
62
@@ -685,6 +688,14 @@ public void setSendLocationInfo(
685
688
this.sendLocationInfo = sendLocationInfo;
686
689
}
687
690
691
+ public Long getMenuId() {
692
+ return this.menuId;
693
+ }
694
695
+ public void setMenuId(Long menuId) {
696
+ this.menuId = menuId;
697
698
699
public String getKfAccount() {
700
return this.kfAccount;
701
0 commit comments