mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-10-31 02:28:25 +08:00
🐛 #3258【微信支付】修复部分金额字段整数溢出问题
This commit is contained in:
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -25,7 +25,7 @@ public class FavorStocksQueryResult implements Serializable {
|
|||||||
* 示例值:10
|
* 示例值:10
|
||||||
*/
|
*/
|
||||||
@SerializedName("total_count")
|
@SerializedName("total_count")
|
||||||
private Integer totalCount;
|
private Long totalCount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 批次详情
|
* 批次详情
|
||||||
|
|||||||
Reference in New Issue
Block a user