weixin.popular.bean.card.code.getdepositcount.CodeGetDepositCountResult 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.getdepositcount;
import weixin.popular.bean.BaseResult;
/**
* 投放卡券-查询导入code数目接口-响应参数
*
* @author Moyq5
*
*/
public class CodeGetDepositCountResult extends BaseResult {
/**
* 已经成功存入的code数目。
*/
private Integer count;
/**
* @return 已经成功存入的code数目
*/
public Integer getCount() {
return count;
}
/**
* @param count 已经成功存入的code数目
*/
public void setCount(Integer count) {
this.count = count;
}
}