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

weixin.popular.bean.card.code.checkcode.CodeCheckCodeResult 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.checkcode;

import weixin.popular.bean.BaseResult;

import com.alibaba.fastjson.annotation.JSONField;

/**
 * 投放卡券-核查code接口-响应参数
 * 
 * @author Moyq5
 *
 */
public class CodeCheckCodeResult extends BaseResult {

	/**
	 * 已经成功存入的code。
	 */
	@JSONField(name = "exist_code")
	private String[] existCode;
	
	/**
	 * 没有存入的code。
	 */
	@JSONField(name = "not_exist_code")
	private String[] notExistCode;

	/**
	 * @return 已经成功存入的code
	 */
	public String[] getExistCode() {
		return existCode;
	}

	/**
	 * @param existCode 已经成功存入的code
	 */
	public void setExistCode(String[] existCode) {
		this.existCode = existCode;
	}

	/**
	 * @return 没有存入的code
	 */
	public String[] getNotExistCode() {
		return notExistCode;
	}

	/**
	 * @param notExistCode 没有存入的code
	 */
	public void setNotExistCode(String[] notExistCode) {
		this.notExistCode = notExistCode;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy