weixin.popular.bean.card.code.consume.CodeConsume 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.code.consume;
import com.alibaba.fastjson.annotation.JSONField;
/**
* 卡券核销-核销Code接口-请求参数
*
* @author Moyq5
*
*/
public class CodeConsume {
/**
* 卡券ID。创建卡券时use_custom_code填写true时必填。非自定义Code不必填写。
*/
@JSONField(name = "card_id")
private String cardId;
/**
* 需核销的Code码。
* 必填:是
*/
private String code;
/**
* 卡券ID。创建卡券时use_custom_code填写true时必填。非自定义Code不必填写。
* @return 卡券ID
*/
public String getCardId() {
return cardId;
}
/**
* 卡券ID。创建卡券时use_custom_code填写true时必填。非自定义Code不必填写。
* @param cardId 卡券ID
*/
public void setCardId(String cardId) {
this.cardId = cardId;
}
/**
* @return 需核销的Code码
*/
public String getCode() {
return code;
}
/**
* 需核销的Code码。
* 必填:是
* @param code 需核销的Code码
*/
public void setCode(String code) {
this.code = code;
}
}