🐛 #3258【微信支付】修复部分金额字段整数溢出问题

This commit is contained in:
杨镇涛
2024-05-09 00:29:57 +08:00
committed by GitHub
parent a8655b9c4c
commit 222c23cf0e
3 changed files with 8 additions and 8 deletions

View File

@ -171,7 +171,7 @@ public class FavorCouponsGetResult implements Serializable {
* 示例值100 * 示例值100
*/ */
@SerializedName(value = "single_price_max") @SerializedName(value = "single_price_max")
private Integer singlePriceMax; private Long singlePriceMax;
/** /**
* 减至后的优惠单价 * 减至后的优惠单价
@ -180,7 +180,7 @@ public class FavorCouponsGetResult implements Serializable {
* 示例值100 * 示例值100
*/ */
@SerializedName(value = "cut_to_price") @SerializedName(value = "cut_to_price")
private Integer cutToPrice; private Long cutToPrice;
} }
@Data @Data

View File

@ -179,7 +179,7 @@ public class FavorCouponsUseResult implements Serializable {
* 示例值100 * 示例值100
*/ */
@SerializedName(value = "single_price_max") @SerializedName(value = "single_price_max")
private Integer singlePriceMax; private Long singlePriceMax;
} }
@Data @Data
@ -194,7 +194,7 @@ public class FavorCouponsUseResult implements Serializable {
* 示例值100 * 示例值100
*/ */
@SerializedName(value = "cut_to_price") @SerializedName(value = "cut_to_price")
private Integer cutToPrice; private Long cutToPrice;
/** /**
* 最高价格 * 最高价格
@ -203,7 +203,7 @@ public class FavorCouponsUseResult implements Serializable {
* 示例值20 * 示例值20
*/ */
@SerializedName(value = "max_price") @SerializedName(value = "max_price")
private Integer maxPrice; private Long maxPrice;
} }
@Data @Data
@ -218,7 +218,7 @@ public class FavorCouponsUseResult implements Serializable {
* 示例值100 * 示例值100
*/ */
@SerializedName(value = "coupon_amount") @SerializedName(value = "coupon_amount")
private Integer couponAmount; private Long couponAmount;
/** /**
* 门槛 * 门槛
@ -227,7 +227,7 @@ public class FavorCouponsUseResult implements Serializable {
* 示例值100 * 示例值100
*/ */
@SerializedName(value = "transaction_minimum") @SerializedName(value = "transaction_minimum")
private Integer transactionMinimum; private Long transactionMinimum;
} }
@Data @Data

View File

@ -25,7 +25,7 @@ public class FavorStocksQueryResult implements Serializable {
* 示例值10 * 示例值10
*/ */
@SerializedName("total_count") @SerializedName("total_count")
private Integer totalCount; private Long totalCount;
/** /**
* 批次详情 * 批次详情