File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/bean/xpay Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -61,5 +61,24 @@ public static class OrderInfo {
6161 @ SerializedName ("wxOrderId" )
6262 private String wxOrderId ;
6363
64+ /** 渠道单号,为用户微信支付详情页面上的商户单号 */
65+ @ SerializedName ("channel_order_id" )
66+ private String channelOrderId ;
67+ /** 微信支付交易单号,为用户微信支付详情页面上的交易单号 */
68+ @ SerializedName ("wxpay_order_id" )
69+ private String wxpayOrderId ;
70+ /** 结算时间的秒级时间戳,大于0表示结算成功 */
71+ @ SerializedName ("sett_time" )
72+ private Long settTime ;
73+ /** 结算状态:0-未开始结算 1-结算中 2-结算成功 3-待结算(与0相同) */
74+ @ SerializedName ("sett_state" )
75+ private Integer settState ;
76+ /** 虚拟支付技术服务费,单位为分;sett_state = 2时返回 */
77+ @ SerializedName ("platform_fee_fen" )
78+ private Long platformFeeFen ;
79+ /** 公众号、视频号平台的cps服务费,单位为分;sett_state = 2时返回 */
80+ @ SerializedName ("cps_fee_fen" )
81+ private Long cpsFeeFen ;
82+
6483 }
6584}
You can’t perform that action at this time.
0 commit comments