weixin.popular.bean.card.Discount 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.
The newest version!
package weixin.popular.bean.card;
/**
* 折扣券
*
* @author Moyq5
*
*/
public class Discount extends AbstractInfo {
/**
* 表示打折额度(百分比)。填30就是七折。
* 添加必填,不支持修改
*/
private Integer discount;
/**
* 表示打折额度(百分比)。填30就是七折。
*/
public Integer getDiscount() {
return discount;
}
/**
* 表示打折额度(百分比)。填30就是七折。
* 添加必填,不支持修改
*/
public void setDiscount(Integer discount) {
this.discount = discount;
}
}