weixin.popular.bean.card.Groupon 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;
import com.alibaba.fastjson.annotation.JSONField;
/**
* 团购券
*
* @author Moyq5
*
*/
public class Groupon extends AbstractInfo {
/**
* 团购详情
* 添加必填,不支持修改
*/
@JSONField(name = "deal_detail")
private String dealDetail;
/**
* 团购详情
*/
public String getDealDetail() {
return dealDetail;
}
/**
* 团购详情
* 添加必填,不支持修改
*/
public void setDealDetail(String dealDetail) {
this.dealDetail = dealDetail;
}
}