Kaynağa Gözat

回复版本

master
aimilin6688 8 yıl önce
ebeveyn
işleme
d18e11cc4e
1 değiştirilmiş dosya ile 5 ekleme ve 1 silme
  1. +5
    -1
      weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/impl/WxMpPayServiceImpl.java

+ 5
- 1
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/impl/WxMpPayServiceImpl.java Dosyayı Görüntüle

@@ -73,13 +73,17 @@ public class WxMpPayServiceImpl implements WxMpPayService {
"REFUND_SOURCE_UNSETTLED_FUNDS"};
protected final Logger log = LoggerFactory.getLogger(this.getClass());
private WxMpService wxMpService;
private WxMpConfigStorage config = null;

public WxMpPayServiceImpl(WxMpService wxMpService) {
this.wxMpService = wxMpService;
}
private WxMpConfigStorage getConfig(){
return wxMpService.getWxMpConfigStorage();
if(config == null){
this.config = wxMpService.getWxMpConfigStorage();
}
return this.config;
}

@Override


Yükleniyor…
İptal
Kaydet