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

me.chanjar.weixin.channel.bean.after.AfterSaleProductInfo Maven / Gradle / Ivy

The newest version!
package me.chanjar.weixin.channel.bean.after;

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

/**
 * 售后相关商品信息
 *
 * @author Zeyes
 */
@Data
@NoArgsConstructor
public class AfterSaleProductInfo implements Serializable {

  private static final long serialVersionUID = 4205179093262757775L;
  /** 商品spu id */
  @JsonProperty("product_id")
  private String productId;

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

  /** 售后数量 */
  @JsonProperty("count")
  private Integer count;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy