-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🆕 #2664 【微信支付】电商收付通(分账)增加查询订单剩余待分金额的接口
- Loading branch information
Showing
4 changed files
with
103 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
...a/com/github/binarywang/wxpay/bean/ecommerce/ProfitSharingOrdersUnSplitAmountRequest.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,36 @@ | ||
package com.github.binarywang.wxpay.bean.ecommerce; | ||
|
||
|
||
import com.google.gson.annotations.SerializedName; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
|
||
/** | ||
* 查询订单剩余待分金额API 请求对象 | ||
* | ||
* @author mshyh | ||
* @date 2022/05/26 | ||
*/ | ||
|
||
|
||
@Data | ||
@NoArgsConstructor | ||
public class ProfitSharingOrdersUnSplitAmountRequest { | ||
|
||
/** | ||
* <pre> | ||
* 字段名:微信订单号 | ||
* 变量名:transaction_id | ||
* 是否必填:是 | ||
* 类型:string[1, 32] | ||
* 描述:微信支付订单号 | ||
* 示例值:4208450740201411110007820472 | ||
* </pre> | ||
*/ | ||
@SerializedName(value = "transaction_id") | ||
private String transactionId; | ||
|
||
|
||
|
||
} |
47 changes: 47 additions & 0 deletions
47
...va/com/github/binarywang/wxpay/bean/ecommerce/ProfitSharingOrdersUnSplitAmountResult.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,47 @@ | ||
package com.github.binarywang.wxpay.bean.ecommerce; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
|
||
|
||
/** | ||
* 查询订单剩余待分金额API 结果响应 | ||
* | ||
* @author mshyh | ||
* @date 2022/05/26 | ||
*/ | ||
|
||
@Data | ||
@NoArgsConstructor | ||
public class ProfitSharingOrdersUnSplitAmountResult { | ||
|
||
/** | ||
* <pre> | ||
* 字段名:微信支付订单号 | ||
* 变量名:transaction_id | ||
* 是否必填:是 | ||
* 类型:string[1,32] | ||
* 描述:微信支付订单号。 | ||
* 示例值:4208450740201411110007820472 | ||
* </pre> | ||
*/ | ||
@SerializedName(value = "transaction_id") | ||
private String transactionId; | ||
|
||
/** | ||
* <pre> | ||
* 字段名:订单剩余待分金额 | ||
* 变量名:unsplit_amount | ||
* 是否必填:是 | ||
* 类型:int | ||
* 描述:订单剩余待分金额,整数,单位为分。 | ||
* 示例值:1000 | ||
* </pre> | ||
*/ | ||
@SerializedName(value = "unsplit_amount") | ||
private Integer unsplitAmount; | ||
|
||
|
||
} |
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