weixin.popular.bean.card.BaseInfoSku Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin-popular Show documentation
Show all versions of weixin-popular Show documentation
The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.
package weixin.popular.bean.card;
/**
* 商品信息
*
* @author Moyq5
*
*/
public class BaseInfoSku {
/**
* 卡券库存的数量,上限为100000000。
* 添加必填
*/
private Integer quantity;
/**
* 卡券库存的数量,上限为100000000。
*/
public Integer getQuantity() {
return quantity;
}
/**
* 卡券库存的数量,上限为100000000。
* 添加必填
*/
public void setQuantity(Integer quantity) {
this.quantity = quantity;
}
}