weixin.popular.bean.card.code.consume.CodeConsumeResultCard 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.
The newest version!
package weixin.popular.bean.card.code.consume;
import com.alibaba.fastjson.annotation.JSONField;
/**
* 卡券核销-核销Code接口-响应参数-卡信息
*
* @author Moyq5
*
*/
public class CodeConsumeResultCard {
/**
* 卡券ID
*/
@JSONField(name = "card_id")
private String cardId;
/**
* 卡券ID
* @return
*/
public String getCardId() {
return cardId;
}
/**
* 卡券ID
* @param cardId
*/
public void setCardId(String cardId) {
this.cardId = cardId;
}
}