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