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

weixin.popular.bean.card.batchget.BatchGetResult Maven / Gradle / Ivy

Go to download

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.batchget;

import com.alibaba.fastjson.annotation.JSONField;

import weixin.popular.bean.BaseResult;

/**
 * 卡券管理-批量查询卡券列表-响应参数
 * 
 * @author Moyq5
 *
 */
public class BatchGetResult extends BaseResult {

	/**
	 * 卡券ID列表。
	 */
	@JSONField(name = "card_id_list")
	private String[] cardIdList;

	/**
	 * 该商户名下卡券ID总数。
	 */
	@JSONField(name = "total_num")
	private Integer totalNum;

	/**
	 * @return 卡券ID列表
	 */
	public String[] getCardIdList() {
		return cardIdList;
	}

	/**
	 * @param cardIdList 卡券ID列表
	 */
	public void setCardIdList(String[] cardIdList) {
		this.cardIdList = cardIdList;
	}

	/**
	 * @return 该商户名下卡券ID总数
	 */
	public Integer getTotalNum() {
		return totalNum;
	}

	/**
	 * @param totalNum 该商户名下卡券ID总数
	 */
	public void setTotalNum(Integer totalNum) {
		this.totalNum = totalNum;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy