Skip to content

Commit

Permalink
🎨 #3414 【视频号】小店API获取订单详情接口结果类新增几个属性
Browse files Browse the repository at this point in the history
  • Loading branch information
binarywang committed Nov 24, 2024
1 parent 900f068 commit d2ff40f
Showing 1 changed file with 58 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package me.chanjar.weixin.channel.bean.order;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.io.Serializable;

/**
* 商店订单价格信息
*
Expand All @@ -13,54 +14,97 @@
@Data
@NoArgsConstructor
public class OrderPriceInfo implements Serializable {

private static final long serialVersionUID = 5216506688949493432L;
/** 商品总价,单位为分 */

/**
* 商品总价,单位为分
*/
@JsonProperty("product_price")
private Integer productPrice;

/** 订单金额,单位为分 */
/**
* 订单金额,单位为分
*/
@JsonProperty("order_price")
private Integer orderPrice;

/** 运费,单位为分 */
/**
* 运费,单位为分
*/
@JsonProperty("freight")
private Integer freight;

/** 优惠金额,单位为分 */
/**
* 优惠金额,单位为分
*/
@JsonProperty("discounted_price")
private Integer discountedPrice;

/** 是否有优惠 */
/**
* 是否有优惠
*/
@JsonProperty("is_discounted")
private Boolean isDiscounted;

/** 订单原始价格,单位为分 */
/**
* 订单原始价格,单位为分
*/
@JsonProperty("original_order_price")
private Integer originalOrderPrice;

/** 商品预估价格,单位为分 */
/**
* 商品预估价格,单位为分
*/
@JsonProperty("estimate_product_price")
private Integer estimateProductPrice;

/** 改价后降低金额,单位为分 */
/**
* 改价后降低金额,单位为分
*/
@JsonProperty("change_down_price")
private Integer changeDownPrice;

/** 改价后运费,单位为分 */
/**
* 改价后运费,单位为分
*/
@JsonProperty("change_freight")
private Integer changeFreight;

/** 是否修改运费 */
/**
* 是否修改运费
*/
@JsonProperty("is_change_freight")
private Boolean changeFreighted;

/** 是否使用了会员积分抵扣 */
/**
* 是否使用了会员积分抵扣
*/
@JsonProperty("use_deduction")
private Boolean useDeduction;

/** 会员积分抵扣金额,单位为分 */
/**
* 会员积分抵扣金额,单位为分
*/
@JsonProperty("deduction_price")
private Integer deductionPrice;

/**
* 商家实收金额,单位为分
* merchant_receieve_price=original_order_price-discounted_price-deduction_price-change_down_price
*/
@JsonProperty("merchant_receieve_price")
private Integer merchant_receive_price;

/**
* 商家优惠金额,单位为分,含义同discounted_price,必填
*/
@JsonProperty("merchant_discounted_price")
private Integer merchant_discounted_price;

/**
* 达人优惠金额,单位为分
*/
@JsonProperty("finder_discounted_price")
private Integer finder_discounted_price;

}

0 comments on commit d2ff40f

Please sign in to comment.