-
-
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
base: develop
Are you sure you want to change the base?
补充小程序发货信息消息推送字段 #3799
Changes from all commits
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; | ||
| /** | ||
| * 支付成功时间,秒级时间戳 | ||
| */ | ||
| @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 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JavaDoc 注释错误:此字段为"发货时间"(shipped_time),但注释写成了"支付成功时间"。这与 payTime 字段的注释重复了。应改为"发货时间,秒级时间戳"或类似描述。