com.tmsps.ne4weixin.bean.message.custom.vo.WxCard Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ne4weixin Show documentation
Show all versions of ne4weixin Show documentation
Ne4WeiXin For Spring is good :)
package com.tmsps.ne4weixin.bean.message.custom.vo;
/**
* @Title: WxCard.java
* @Package: com.tmsps.ne4weixin.bean.custom.vo
* @Description: 卡券
* @author: hanjiefei
* @date: 2019-10-18
* @version V1.0
* @Copyright: 2019
*/
public class WxCard {
/**
* 卡券ID。一个卡券ID对应一类卡券,包含了相应库存数量的Code码
*/
private String card_id;
public WxCard(String card_id) {
super();
this.card_id = card_id;
}
public String getCard_id() {
return card_id;
}
public void setCard_id(String card_id) {
this.card_id = card_id;
}
}