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

cn.binarywang.wx.miniapp.bean.shop.WxMaShopSkuAttribute Maven / Gradle / Ivy

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

import com.google.gson.annotations.SerializedName;
import java.io.Serializable;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * sku对象
 *
 * @author boris
 * @since 2021-03-22
 */
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class WxMaShopSkuAttribute implements Serializable {
  private static final long serialVersionUID = -3617077838017818865L;

  /**
   * 销售属性key(自定义)
   * 
   * 是否必填: 否
   * 
*/ @SerializedName("attr_key") private String attrKey; @SerializedName("attr_value") private String attrValue; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy