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

com.mizhousoft.weixin.common.WxConfig Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package com.mizhousoft.weixin.common;

/**
 * 微信配置
 *
 */
public class WxConfig
{
	// appId
	protected volatile String appId;

	// appSecret
	protected volatile String appSecret;

	/**
	 * 获取appId
	 * 
	 * @return
	 */
	public String getAppId()
	{
		return appId;
	}

	/**
	 * 设置appId
	 * 
	 * @param appId
	 */
	public void setAppId(String appId)
	{
		this.appId = appId;
	}

	/**
	 * 获取appSecret
	 * 
	 * @return
	 */
	public String getAppSecret()
	{
		return appSecret;
	}

	/**
	 * 设置appSecret
	 * 
	 * @param appSecret
	 */
	public void setAppSecret(String appSecret)
	{
		this.appSecret = appSecret;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy