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

weixin.popular.bean.component.PreAuthCode 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.component;

import weixin.popular.bean.BaseResult;

public class PreAuthCode extends BaseResult{

	private String pre_auth_code;

	private int expires_in;

	public String getPre_auth_code() {
		return pre_auth_code;
	}
	public void setPre_auth_code(String pre_auth_code) {
		this.pre_auth_code = pre_auth_code;
	}
	public int getExpires_in() {
		return expires_in;
	}
	public void setExpires_in(int expires_in) {
		this.expires_in = expires_in;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy