File tree Expand file tree Collapse file tree
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/message Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -254,6 +254,15 @@ public class WxMpXmlMessage implements Serializable {
254254 @ XStreamAlias ("RemarkAmount" )
255255 private String remarkAmount ;
256256
257+ /**
258+ * <pre>
259+ * 官网文档中,微信卡券>>卡券事件推送>>2.10 库存报警事件card_sku_remind
260+ * Detail:报警详细信息
261+ * </pre>
262+ */
263+ @ XStreamAlias ("Detail" )
264+ private String detail ;
265+
257266 @ XStreamAlias ("ScanCodeInfo" )
258267 private ScanCodeInfo scanCodeInfo = new ScanCodeInfo ();
259268
@@ -468,6 +477,14 @@ public void setFailReason(String failReason) {
468477 this .failReason = failReason ;
469478 }
470479
480+ public String getDetail () {
481+ return detail ;
482+ }
483+
484+ public void setDetail (String detail ) {
485+ this .detail = detail ;
486+ }
487+
471488 public String getStoreUniqId () {
472489 return this .storeUniqId ;
473490 }
You can’t perform that action at this time.
0 commit comments