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

weixin.popular.bean.card.code.update.CodeUpdate 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.code.update;

import com.alibaba.fastjson.annotation.JSONField;

/**
 * 卡券管理-更改Code接口-请求参数
 * 
 * @author Moyq5
 *
 */
public class CodeUpdate {

	/**
	 * 卡券ID。自定义Code码卡券为必填。
	 */
	@JSONField(name = "card_id")
	private String cardId;
	
	/**
	 * 需变更的Code码。
* 必填:是 */ private String code; /** * 变更后的有效Code码。
* 必填:是,长度:64 */ @JSONField(name = "new_code") private String newCode; /** * 卡券ID。自定义Code码卡券为必填。 * @return 卡券ID */ public String getCardId() { return cardId; } /** * 卡券ID。自定义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; } /** * @return 变更后的有效Code码 */ public String getNewCode() { return newCode; } /** * 变更后的有效Code码。
* 必填:是,长度:64 * @param newCode 变更后的有效Code码 */ public void setNewCode(String newCode) { this.newCode = newCode; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy