package com.yeshi.fanli.controller.wxpay;
|
|
public class WXAPPInfo {
|
private String appId;
|
private String appSecret;
|
private String mchId;
|
|
public WXAPPInfo(String appId, String appSecret, String mchId, String mchKey) {
|
this.appId = appId;
|
this.appSecret = appSecret;
|
this.mchId = mchId;
|
this.mchKey = mchKey;
|
}
|
|
public WXAPPInfo() {
|
|
}
|
|
private String mchKey;
|
|
public String getAppId() {
|
return 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 getMchKey() {
|
return mchKey;
|
}
|
|
public void setMchKey(String mchKey) {
|
this.mchKey = mchKey;
|
}
|
|
}
|