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

weixin.popular.bean.card.user.getcardlist.UserGetCardListResultCard 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.user.getcardlist;

import com.alibaba.fastjson.annotation.JSONField;

/**
 * 管理卡券-获取用户已领取卡券接口-响应参数-已领取的卡券
 * 
 * @author Moyq5
 *
 */
public class UserGetCardListResultCard {

	@JSONField(name = "card_id")
	private String cardId;
	private String code;

	public String getCardId() {
		return cardId;
	}

	public void setCardId(String cardId) {
		this.cardId = cardId;
	}

	public String getCode() {
		return code;
	}

	public void setCode(String code) {
		this.code = code;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy