package org.jeecg.modules.lims.config;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.context.annotation.Configuration;
|
|
@Configuration
|
@ConfigurationProperties(prefix = "wx")
|
public class WxProperties {
|
|
private String appId;
|
|
private String appSecret;
|
|
private String mchId;
|
|
private String mchKey;
|
|
private String notifyUrl;
|
|
private String keyPath;
|
|
private String token;
|
|
private String aesKey;
|
|
public String getToken() {
|
return token;
|
}
|
|
public void setToken(String token) {
|
this.token = token;
|
}
|
|
public String getAesKey() {
|
return aesKey;
|
}
|
|
public void setAesKey(String aesKey) {
|
this.aesKey = aesKey;
|
}
|
|
public String getNotifyUrl() {
|
return notifyUrl;
|
}
|
|
public void setNotifyUrl(String notifyUrl) {
|
this.notifyUrl = notifyUrl;
|
}
|
|
public String getMchKey() {
|
return mchKey;
|
}
|
|
public void setMchKey(String mchKey) {
|
this.mchKey = mchKey;
|
}
|
|
public String getAppId() {
|
return this.appId;
|
}
|
|
public void setAppId(String appId) {
|
this.appId = appId;
|
}
|
|
public String getAppSecret() {
|
return appSecret;
|
}
|
|
public void setAppSecret(String appSecret) {
|
this.appSecret = appSecret;
|
}
|
|
public String getMchId() {
|
return mchId;
|
}
|
|
public void setMchId(String mchId) {
|
this.mchId = mchId;
|
}
|
|
public String getKeyPath() {
|
return keyPath;
|
}
|
|
public void setKeyPath(String keyPath) {
|
this.keyPath = keyPath;
|
}
|
}
|