com.mizhousoft.weixin.mp.config.WxMpConfig Maven / Gradle / Ivy
package com.mizhousoft.weixin.mp.config;
import com.mizhousoft.weixin.common.WxConfig;
/**
* 微信公众号配置
*
*/
public class WxMpConfig extends WxConfig
{
//
private volatile String token;
//
private volatile String aesKey;
/**
* 获取token
*
* @return
*/
public String getToken()
{
return token;
}
/**
* 设置token
*
* @param token
*/
public void setToken(String token)
{
this.token = token;
}
/**
* 获取aesKey
*
* @return
*/
public String getAesKey()
{
return aesKey;
}
/**
* 设置aesKey
*
* @param aesKey
*/
public void setAesKey(String aesKey)
{
this.aesKey = aesKey;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy