Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public static class CutToMessage implements Serializable {
* 示例值:100
*/
@SerializedName(value = "single_price_max")
private Integer singlePriceMax;
private Long singlePriceMax;

/**
* 减至后的优惠单价
Expand All @@ -180,7 +180,7 @@ public static class CutToMessage implements Serializable {
* 示例值:100
*/
@SerializedName(value = "cut_to_price")
private Integer cutToPrice;
private Long cutToPrice;
}

@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public static class SingleitemDiscountOff implements Serializable {
* 示例值:100
*/
@SerializedName(value = "single_price_max")
private Integer singlePriceMax;
private Long singlePriceMax;
}

@Data
Expand All @@ -194,7 +194,7 @@ public static class DiscountTo implements Serializable {
* 示例值:100
*/
@SerializedName(value = "cut_to_price")
private Integer cutToPrice;
private Long cutToPrice;

/**
* 最高价格
Expand All @@ -203,7 +203,7 @@ public static class DiscountTo implements Serializable {
* 示例值:20
*/
@SerializedName(value = "max_price")
private Integer maxPrice;
private Long maxPrice;
}

@Data
Expand All @@ -218,7 +218,7 @@ public static class NormalCouponInformation implements Serializable {
* 示例值:100
*/
@SerializedName(value = "coupon_amount")
private Integer couponAmount;
private Long couponAmount;

/**
* 门槛
Expand All @@ -227,7 +227,7 @@ public static class NormalCouponInformation implements Serializable {
* 示例值:100
*/
@SerializedName(value = "transaction_minimum")
private Integer transactionMinimum;
private Long transactionMinimum;
}

@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class FavorStocksQueryResult implements Serializable {
* 示例值:10
*/
@SerializedName("total_count")
private Integer totalCount;
private Long totalCount;

/**
* 批次详情
Expand Down