com.gitee.target123.develop.pay.wx.WxPayProperties Maven / Gradle / Ivy
package com.gitee.target123.develop.pay.wx;
public class WxPayProperties {
private String appId;
private String mchId;
private String mchKey;
private String keyPath;
public String getAppId() {
return appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
public String getMchId() {
return mchId;
}
public void setMchId(String mchId) {
this.mchId = mchId;
}
public String getMchKey() {
return mchKey;
}
public void setMchKey(String mchKey) {
this.mchKey = mchKey;
}
public String getKeyPath() {
return keyPath;
}
public void setKeyPath(String keyPath) {
this.keyPath = keyPath;
}
}