mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-04-05 08:37:32 +08:00
🐛 #3258【微信支付】修复部分金额字段整数溢出问题
This commit is contained in:
parent
a8655b9c4c
commit
222c23cf0e
@ -171,7 +171,7 @@ public class FavorCouponsGetResult implements Serializable {
|
||||
* 示例值:100
|
||||
*/
|
||||
@SerializedName(value = "single_price_max")
|
||||
private Integer singlePriceMax;
|
||||
private Long singlePriceMax;
|
||||
|
||||
/**
|
||||
* 减至后的优惠单价
|
||||
@ -180,7 +180,7 @@ public class FavorCouponsGetResult implements Serializable {
|
||||
* 示例值:100
|
||||
*/
|
||||
@SerializedName(value = "cut_to_price")
|
||||
private Integer cutToPrice;
|
||||
private Long cutToPrice;
|
||||
}
|
||||
|
||||
@Data
|
||||
|
@ -179,7 +179,7 @@ public class FavorCouponsUseResult implements Serializable {
|
||||
* 示例值:100
|
||||
*/
|
||||
@SerializedName(value = "single_price_max")
|
||||
private Integer singlePriceMax;
|
||||
private Long singlePriceMax;
|
||||
}
|
||||
|
||||
@Data
|
||||
@ -194,7 +194,7 @@ public class FavorCouponsUseResult implements Serializable {
|
||||
* 示例值:100
|
||||
*/
|
||||
@SerializedName(value = "cut_to_price")
|
||||
private Integer cutToPrice;
|
||||
private Long cutToPrice;
|
||||
|
||||
/**
|
||||
* 最高价格
|
||||
@ -203,7 +203,7 @@ public class FavorCouponsUseResult implements Serializable {
|
||||
* 示例值:20
|
||||
*/
|
||||
@SerializedName(value = "max_price")
|
||||
private Integer maxPrice;
|
||||
private Long maxPrice;
|
||||
}
|
||||
|
||||
@Data
|
||||
@ -218,7 +218,7 @@ public class FavorCouponsUseResult implements Serializable {
|
||||
* 示例值:100
|
||||
*/
|
||||
@SerializedName(value = "coupon_amount")
|
||||
private Integer couponAmount;
|
||||
private Long couponAmount;
|
||||
|
||||
/**
|
||||
* 门槛
|
||||
@ -227,7 +227,7 @@ public class FavorCouponsUseResult implements Serializable {
|
||||
* 示例值:100
|
||||
*/
|
||||
@SerializedName(value = "transaction_minimum")
|
||||
private Integer transactionMinimum;
|
||||
private Long transactionMinimum;
|
||||
}
|
||||
|
||||
@Data
|
||||
|
@ -25,7 +25,7 @@ public class FavorStocksQueryResult implements Serializable {
|
||||
* 示例值:10
|
||||
*/
|
||||
@SerializedName("total_count")
|
||||
private Integer totalCount;
|
||||
private Long totalCount;
|
||||
|
||||
/**
|
||||
* 批次详情
|
||||
|
Loading…
Reference in New Issue
Block a user