All Downloads are FREE. Search and download functionalities are using the official Maven repository.

weixin.popular.bean.card.AbstractCard Maven / Gradle / Ivy

Go to download

The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.

There is a newer version: 2.8.43
Show 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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy