-
-
Notifications
You must be signed in to change notification settings - Fork 9k
补充小程序发货信息消息推送字段 #3799
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
补充小程序发货信息消息推送字段 #3799
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -257,6 +257,62 @@ public class WxMaMessage implements Serializable { | |
| */ | ||
| private String context; | ||
|
|
||
| /** | ||
| * 微信支付订单号 | ||
| */ | ||
| @XStreamAlias("transaction_id") | ||
| private String transactionId; | ||
| /** | ||
| * 商户号 | ||
| */ | ||
| @XStreamAlias("merchant_id") | ||
| private String merchantId; | ||
| /** | ||
| * 子商户号 | ||
| */ | ||
| @XStreamAlias("sub_merchant_id") | ||
| private String subMerchantId; | ||
| /** | ||
| * 商户订单号 | ||
| */ | ||
| @XStreamAlias("merchant_trade_no") | ||
| private String merchantTradeNo; | ||
| /** | ||
| * 支付成功时间,秒级时间戳 | ||
| */ | ||
| @XStreamAlias("pay_time") | ||
| private Long payTime; | ||
| /** | ||
| * 消息文本内容 | ||
| */ | ||
| @XStreamAlias("msg") | ||
| private String msg; | ||
| /** | ||
| * 支付成功时间,秒级时间戳 | ||
buaazyl marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| */ | ||
| @XStreamAlias("shipped_time") | ||
| private Long shippedTime; | ||
| /** | ||
| * 预计结算时间,秒级时间戳。发货时推送才有该字段 | ||
| */ | ||
| @XStreamAlias("estimated_settlement_time") | ||
| private Long estimatedSettlementTime; | ||
| /** | ||
| * 确认收货方式:1. 手动确认收货;2. 自动确认收货。结算时推送才有该字段 | ||
| */ | ||
| @XStreamAlias("confirm_receive_method") | ||
| private Integer confirmReceiveMethod; | ||
| /** | ||
| * 确认收货时间,秒级时间戳。结算时推送才有该字段 | ||
| */ | ||
| @XStreamAlias("confirm_receive_time") | ||
| private Long confirmReceiveTime; | ||
| /** | ||
| * 订单结算时间,秒级时间戳。结算时推送才有该字段 | ||
| */ | ||
| @XStreamAlias("settlement_time") | ||
| private Long settlementTime; | ||
|
Comment on lines
260
to
314
|
||
|
|
||
| /** | ||
| * 不要直接使用这个字段, | ||
| * 这个字段只是为了适配 SubscribeMsgPopupEvent SubscribeMsgChangeEvent SubscribeMsgSentEvent | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.