weixin.popular.bean.card.Gift 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 Gift extends AbstractInfo {
/**
* 填写兑换内容的名称。
* 添加必填,不支持修改
*/
private String gift;
/**
* 兑换内容的名称。
*/
public String getGift() {
return gift;
}
/**
* 填写兑换内容的名称。
* 添加必填,不支持修改
*/
public void setGift(String gift) {
this.gift = gift;
}
}