mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-05-04 20:57:47 +08:00
WxMpXmlMessage微信推送卡券库存报警事件增加缺失的消息数据 #218
This commit is contained in:
parent
0ba2684f47
commit
00825724f3
@ -254,6 +254,15 @@ public class WxMpXmlMessage implements Serializable {
|
|||||||
@XStreamAlias("RemarkAmount")
|
@XStreamAlias("RemarkAmount")
|
||||||
private String remarkAmount;
|
private String remarkAmount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <pre>
|
||||||
|
* 官网文档中,微信卡券>>卡券事件推送>>2.10 库存报警事件card_sku_remind
|
||||||
|
* Detail:报警详细信息
|
||||||
|
* </pre>
|
||||||
|
*/
|
||||||
|
@XStreamAlias("Detail")
|
||||||
|
private String detail;
|
||||||
|
|
||||||
@XStreamAlias("ScanCodeInfo")
|
@XStreamAlias("ScanCodeInfo")
|
||||||
private ScanCodeInfo scanCodeInfo = new ScanCodeInfo();
|
private ScanCodeInfo scanCodeInfo = new ScanCodeInfo();
|
||||||
|
|
||||||
@ -468,6 +477,14 @@ public class WxMpXmlMessage implements Serializable {
|
|||||||
this.failReason = failReason;
|
this.failReason = failReason;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getDetail() {
|
||||||
|
return detail;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDetail(String detail) {
|
||||||
|
this.detail = detail;
|
||||||
|
}
|
||||||
|
|
||||||
public String getStoreUniqId() {
|
public String getStoreUniqId() {
|
||||||
return this.storeUniqId;
|
return this.storeUniqId;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user