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