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

cn.binarywang.wx.miniapp.bean.live.WxMaLiveGoodInfo Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package cn.binarywang.wx.miniapp.bean.live;

import lombok.Data;

import java.io.Serializable;
import java.math.BigDecimal;
import java.util.List;

/**
 * 直播商品信息
 *
 * @author unkown
 */
@Data
public class WxMaLiveGoodInfo implements Serializable {
  private static final long serialVersionUID = 5769245932149287574L;
  private Integer goodsId;
  private String coverImgUrl;
  private String url;
  private Integer priceType;
  private BigDecimal price;
  private BigDecimal price2;
  private String name;
  /**
   * 1, 2:表示是为api添加商品,否则是在MP添加商品
   */
  private String thirdPartyTag;
  /**
   * see here
   */
  private List goodsKey;


  /**
   * 当商品为第三方小程序的商品则填写为对应第三方小程序的appid,自身小程序商品则为''
   */
  private String thirdPartyAppid;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy