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

weixin.popular.bean.card.code.deposit.CodeDeposit Maven / Gradle / Ivy

Go to download

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.deposit;

import com.alibaba.fastjson.annotation.JSONField;

/**
 * 投放卡券-导入code接口-请求参数
 * 
 * @author Moyq5
 *
 */
public class CodeDeposit {

	/**
	 * 需要进行导入code的卡券ID。
* 必填:是 */ @JSONField(name = "card_id") private String cardId; /** * 需导入微信卡券后台的自定义code,上限为100个。
* 必填:是 */ private String[] code; /** * 需要进行导入code的卡券ID。 * @return 卡券ID */ public String getCardId() { return cardId; } /** * 需要进行导入code的卡券ID。
* 必填:是 * @param cardId 卡券ID */ public void setCardId(String cardId) { this.cardId = cardId; } /** * 需导入微信卡券后台的自定义code,上限为100个。 * @return 自定义code */ public String[] getCode() { return code; } /** * 需导入微信卡券后台的自定义code,上限为100个。
* 必填:是 * @param code 自定义code */ public void setCode(String[] code) { this.code = code; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy