weixin.popular.bean.card.AbstractCard 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;
import com.alibaba.fastjson.annotation.JSONField;
/**
* 卡券抽象类,公众属性
*
* @author Moyq5
*
*/
public class AbstractCard {
/**
* 卡券类型
*/
@JSONField(name = "card_type")
private String cardType;
public AbstractCard() {
}
public AbstractCard(String cardType) {
this.cardType = cardType;
}
/**
* @return 卡券类型
*/
public String getCardType() {
return cardType;
}
/**
* @param cardType 卡券类型
*/
public void setCardType(String cardType) {
this.cardType = cardType;
}
}