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

weixin.popular.bean.card.paycell.set.PaySellSet 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.paycell.set;

import com.alibaba.fastjson.annotation.JSONField;

/**
 * 微信卡券-设置买单-提交对象
 * 
 * @author Moyq5
 *
 */
public class PaySellSet {

	/**
	 * 卡券ID。
	 */
	@JSONField(name = "card_id")
	private String cardId;
	
	/**
	 * 是否开启买单功能
	 */
	@JSONField(name = "is_open")
	private Boolean isOpen;

	/**
	 * 卡券ID。
	 */
	public String getCardId() {
		return cardId;
	}

	/**
	 * 卡券ID。
	 */
	public void setCardId(String cardId) {
		this.cardId = cardId;
	}

	/**
	 * 是否开启买单功能
	 */
	public Boolean getIsOpen() {
		return isOpen;
	}

	/**
	 * 是否开启买单功能
	 */
	public void setIsOpen(Boolean isOpen) {
		this.isOpen = isOpen;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy