weixin.popular.bean.card.GeneralCoupon 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 GeneralCoupon extends AbstractInfo {
/**
* 填写优惠详情。
* 添加必填,不支持修改
*/
@JSONField(name = "default_detail")
private String defaultDetail;
/**
* 填写优惠详情。
*/
public String getDefaultDetail() {
return defaultDetail;
}
/**
* 填写优惠详情。
* 添加必填,不支持修改
*/
public void setDefaultDetail(String defaultDetail) {
this.defaultDetail = defaultDetail;
}
}