All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.chanjar.weixin.channel.bean.order.ChangeOrderInfo Maven / Gradle / Ivy

There is a newer version: 4.7.1.B
Show newest version
package me.chanjar.weixin.channel.bean.order;

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

/**
 * 订单修改信息
 *
 * @author Zeyes
 */
@Data
@NoArgsConstructor
public class ChangeOrderInfo implements Serializable {

  private static final long serialVersionUID = 4932726847720452340L;

  /** 商品id */
  @JsonProperty("product_id")
  private String productId;

  /** 商品sku */
  @JsonProperty("sku_id")
  private String skuId;

  /** 订单中该商品修改后的总价,以分为单位 */
  @JsonProperty("change_price")
  private String changePrice;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy