-
-
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.
- Loading branch information
1 parent
c73fac0
commit 8268fc8
Showing
6 changed files
with
72 additions
and
4 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
43 changes: 43 additions & 0 deletions
43
...ay/src/main/java/com/github/binarywang/wxpay/bean/payscore/PayScorePlanDetailRequest.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,43 @@ | ||
package com.github.binarywang.wxpay.bean.payscore; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
import java.io.Serializable; | ||
|
||
/** | ||
* @author UltramanNoa | ||
* @className PayScorePlanDetail | ||
* @description 支付分计划明细列表 | ||
* @createTime 2023/11/3 11:22 | ||
**/ | ||
@Data | ||
@NoArgsConstructor | ||
public class PayScorePlanDetailRequest implements Serializable { | ||
|
||
private static final long serialVersionUID = 999251141141181820L; | ||
/** | ||
* 计划明细原支付金额(单位分) | ||
*/ | ||
@SerializedName("original_price") | ||
private Integer originalPrice; | ||
|
||
/** | ||
* 计划明细优惠说明 | ||
*/ | ||
@SerializedName("plan_discount_description") | ||
private String planDiscountDescription; | ||
|
||
/** | ||
* 计划明细实际支付金额(单位分) | ||
*/ | ||
@SerializedName("actual_price") | ||
private Long actualPrice; | ||
|
||
/** | ||
* 计划明细名称 | ||
*/ | ||
@SerializedName("plan_detail_name") | ||
private String planDetailName; | ||
} |
25 changes: 25 additions & 0 deletions
25
...pay/src/main/java/com/github/binarywang/wxpay/bean/payscore/PayScorePlanDetailResult.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,25 @@ | ||
package com.github.binarywang.wxpay.bean.payscore; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
import java.io.Serializable; | ||
|
||
/** | ||
* @author UltramanNoa | ||
* @className PayScorePlanDetail | ||
* @description 支付分计划明细列表 | ||
* @createTime 2023/11/3 11:22 | ||
**/ | ||
@Data | ||
@NoArgsConstructor | ||
public class PayScorePlanDetailResult extends PayScorePlanDetailRequest implements Serializable { | ||
|
||
private static final long serialVersionUID = -2195861995542633650L; | ||
/** | ||
* 计划明细序号(返回参数) | ||
*/ | ||
@SerializedName("plan_detail_no") | ||
private Integer planDetailNo; | ||
} |
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