8000 支付通知解密数据对象增加字段 by mr-xiaoyu · Pull Request #2106 · binarywang/WxJava · GitHub
[go: up one dir, main page]

Skip to content

支付通知解密数据对象增加字段 #2106

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

Merged
merged 2 commits into from
May 14, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
支付通知解密数据对象增加字段
字段:payer
描述:基础支付支付者信息
  • Loading branch information
mr-xiaoyu committed May 12, 2021
commit 9c00bce5aef392ee17c2e7a09c43019cc79447f4
Original file line number Diff line number Diff line change
Expand Up @@ -195,11 +195,22 @@ public class PartnerTransactionsResult implements Serializable {

/**
* <pre>
* 字段名:+支付者
* 字段名:支付者信息
* 变量名:payer
* 是否必填:是
* 类型:object
* 描述:基础支付支付者信息
* </pre>
*/
private CombinePayerInfo payer;

/**
* <pre>
* 字段名:支付者
* 变量名:combine_payer_info
* 是否必填:否
* 类型:object
* 描述:示例值:见请求示例
* 描述:合单支付支付者信息,示例值:见请求示例
* </pre>
*/
@SerializedName(value = "combine_payer_info")
Expand Down
0