-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🆕 #1775 微信支付电商收付通增加修改二级商户结算账户和退款查询的接口
- Loading branch information
1 parent
5f0d1b3
commit 807ed7d
Showing
11 changed files
with
1,181 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
...y/src/main/java/com/github/binarywang/wxpay/bean/ecommerce/ProfitSharingQueryRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
package com.github.binarywang.wxpay.bean.ecommerce; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
import java.io.Serializable; | ||
|
||
@Data | ||
@NoArgsConstructor | ||
public class ProfitSharingQueryRequest implements Serializable { | ||
|
||
/** | ||
* <pre> | ||
* 字段名:二级商户号 | ||
* 变量名:sub_mchid | ||
* 是否必填:是 | ||
* 类型:string(32) | ||
* 描述: | ||
* 分账出资的电商平台二级商户,填写微信支付分配的商户号。 | ||
* 示例值:1900000109 | ||
* </pre> | ||
*/ | ||
@SerializedName(value = "sub_mchid") | ||
private String subMchid; | ||
|
||
/** | ||
* <pre> | ||
* 字段名:微信订单号 | ||
* 变量名:transaction_id | ||
* 是否必填:是 | ||
* 类型:string(32) | ||
* 描述: | ||
* 微信支付订单号。 | ||
* 示例值: 4208450740201411110007820472 | ||
* </pre> | ||
*/ | ||
@SerializedName(value = "transaction_id") | ||
private String transactionId; | ||
|
||
/** | ||
* <pre> | ||
* 字段名:商户分账单号 | ||
* 变量名:out_order_no | ||
* 是否必填:是 | ||
* 类型:string(64) | ||
* 描述: | ||
* 商户系统内部的分账单号,在商户系统内部唯一(单次分账、多次分账、完结分账应使用不同的商户分账单号),同一分账单号多次请求等同一次。 | ||
* 示例值:P20150806125346 | ||
* </pre> | ||
*/ | ||
@SerializedName(value = "out_order_no") | ||
private String outOrderNo; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.