🎨 修复已移除代码

This commit is contained in:
Binary Wang 2021-09-13 23:44:46 +08:00
parent 6bba793f4f
commit 941c47a193
2 changed files with 1 additions and 14 deletions

View File

@ -450,19 +450,12 @@ public interface WxMaService extends WxService {
WxMaShopAuditService getShopAuditService();
/**
* 获取小程序 URL Link服务接口
* 获取小程序Link服务接口
*
* @return
*/
WxMaLinkService getLinkService();
/**
* 获取小程序 Short Link服务接口
*
* @return
*/
WxMaShortLinkService getShortLinkService();
/**
* 获取电子发票报销方服务接口
*

View File

@ -74,7 +74,6 @@ public abstract class BaseWxMaServiceImpl<H, P> implements WxMaService, RequestH
private final WxMaShopAfterSaleService shopAfterSaleService = new WxMaShopAfterSaleServiceImpl(this);
private final WxMaShopDeliveryService shopDeliveryService = new WxMaShopDeliveryServiceImpl(this);
private final WxMaLinkService linkService = new WxMaLinkServiceImpl(this);
private final WxMaShortLinkService shortlinkService = new WxMaShortLinkServiceImpl(this);
private final WxMaReimburseInvoiceService reimburseInvoiceService = new WxMaReimburseInvoiceServiceImpl(this);
private Map<String, WxMaConfig> configMap;
private int retrySleepMillis = 1000;
@ -570,11 +569,6 @@ public abstract class BaseWxMaServiceImpl<H, P> implements WxMaService, RequestH
return this.linkService;
}
@Override
public WxMaShortLinkService getShortLinkService() {
return this.shortlinkService;
}
@Override
public WxMaReimburseInvoiceService getReimburseInvoiceService() {
return this.reimburseInvoiceService;