mirror of
https://gitee.com/egzosn/pay-java-parent.git
synced 2026-05-10 23:47:44 +08:00
增加注释。
This commit is contained in:
@@ -15,8 +15,13 @@ public class WxPayConfigStorage extends BasePayConfigStorage {
|
||||
|
||||
|
||||
public String appSecret;
|
||||
/**
|
||||
* 应用id
|
||||
*/
|
||||
public String appid ;
|
||||
// 商户号 合作者id
|
||||
/**
|
||||
* 商户号 合作者id
|
||||
*/
|
||||
public String mchId;
|
||||
|
||||
|
||||
@@ -35,17 +40,11 @@ public class WxPayConfigStorage extends BasePayConfigStorage {
|
||||
this.appid = appid;
|
||||
}
|
||||
|
||||
/**
|
||||
* 合作商唯一标识
|
||||
* @see #getPid() 代替者
|
||||
*/
|
||||
public String getPartner() {
|
||||
return mchId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 合作商唯一标识
|
||||
* @see #getPartner() 代替者
|
||||
*/
|
||||
@Override
|
||||
public String getPid() {
|
||||
@@ -53,6 +52,15 @@ public class WxPayConfigStorage extends BasePayConfigStorage {
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 合作商唯一标识
|
||||
*/
|
||||
public void setPid(String mchId) {
|
||||
this.mchId = mchId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public String getSeller() {
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user