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

me.chanjar.weixin.channel.bean.delivery.FreightProductInfo Maven / Gradle / Ivy

package me.chanjar.weixin.channel.bean.delivery;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.io.Serializable;

/**
 * 包裹中商品信息
 *
 * @author Zeyes
 */
@Data
@NoArgsConstructor
public class FreightProductInfo implements Serializable {
  private static final long serialVersionUID = -3751269707150372172L;

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

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

  /**
   * 商品数量
   */
  @JsonProperty("product_cnt")
  private Integer productCnt;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy