weixin.popular.bean.card.code.decrypt.CodeDecrypt 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.decrypt;
import com.alibaba.fastjson.annotation.JSONField;
/**
* 卡券核销-Code解码接口-请求参数
*
* @author Moyq5
*
*/
public class CodeDecrypt {
/**
* 经过加密的Code码。
* 必填:是
*/
@JSONField(name = "encrypt_code")
private String encryptCode;
/**
* @return 经过加密的Code码
*/
public String getEncryptCode() {
return encryptCode;
}
/**
* 经过加密的Code码。
* 必填:是
* @param encryptCode 经过加密的Code码
*/
public void setEncryptCode(String encryptCode) {
this.encryptCode = encryptCode;
}
}