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

weixin.popular.bean.pay.PayNativeRequest 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.32
Show newest version
package weixin.popular.bean.pay;

/**
 * 原生支付请求
 * @author LiYi
 *
 */
public class PayNativeRequest {
	
	private String appid;
	
	private String timestamp;
	
	private String noncestr;
	
	private String productid;
	
	private String sign;

	public String getAppid() {
		return appid;
	}

	public void setAppid(String appid) {
		this.appid = appid;
	}

	public String getTimestamp() {
		return timestamp;
	}

	public void setTimestamp(String timestamp) {
		this.timestamp = timestamp;
	}

	public String getNoncestr() {
		return noncestr;
	}

	public void setNoncestr(String noncestr) {
		this.noncestr = noncestr;
	}

	public String getProductid() {
		return productid;
	}

	public void setProductid(String productid) {
		this.productid = productid;
	}

	public String getSign() {
		return sign;
	}

	public void setSign(String sign) {
		this.sign = sign;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy