mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-06-28 13:16:19 +08:00
🎨 修复已移除代码
This commit is contained in:
parent
6bba793f4f
commit
941c47a193
@ -450,19 +450,12 @@ public interface WxMaService extends WxService {
|
|||||||
WxMaShopAuditService getShopAuditService();
|
WxMaShopAuditService getShopAuditService();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取小程序 URL Link服务接口
|
* 获取小程序Link服务接口
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
WxMaLinkService getLinkService();
|
WxMaLinkService getLinkService();
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取小程序 Short Link服务接口
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
WxMaShortLinkService getShortLinkService();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取电子发票报销方服务接口
|
* 获取电子发票报销方服务接口
|
||||||
*
|
*
|
||||||
|
@ -74,7 +74,6 @@ public abstract class BaseWxMaServiceImpl<H, P> implements WxMaService, RequestH
|
|||||||
private final WxMaShopAfterSaleService shopAfterSaleService = new WxMaShopAfterSaleServiceImpl(this);
|
private final WxMaShopAfterSaleService shopAfterSaleService = new WxMaShopAfterSaleServiceImpl(this);
|
||||||
private final WxMaShopDeliveryService shopDeliveryService = new WxMaShopDeliveryServiceImpl(this);
|
private final WxMaShopDeliveryService shopDeliveryService = new WxMaShopDeliveryServiceImpl(this);
|
||||||
private final WxMaLinkService linkService = new WxMaLinkServiceImpl(this);
|
private final WxMaLinkService linkService = new WxMaLinkServiceImpl(this);
|
||||||
private final WxMaShortLinkService shortlinkService = new WxMaShortLinkServiceImpl(this);
|
|
||||||
private final WxMaReimburseInvoiceService reimburseInvoiceService = new WxMaReimburseInvoiceServiceImpl(this);
|
private final WxMaReimburseInvoiceService reimburseInvoiceService = new WxMaReimburseInvoiceServiceImpl(this);
|
||||||
private Map<String, WxMaConfig> configMap;
|
private Map<String, WxMaConfig> configMap;
|
||||||
private int retrySleepMillis = 1000;
|
private int retrySleepMillis = 1000;
|
||||||
@ -570,11 +569,6 @@ public abstract class BaseWxMaServiceImpl<H, P> implements WxMaService, RequestH
|
|||||||
return this.linkService;
|
return this.linkService;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public WxMaShortLinkService getShortLinkService() {
|
|
||||||
return this.shortlinkService;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public WxMaReimburseInvoiceService getReimburseInvoiceService() {
|
public WxMaReimburseInvoiceService getReimburseInvoiceService() {
|
||||||
return this.reimburseInvoiceService;
|
return this.reimburseInvoiceService;
|
||||||
|
Loading…
Reference in New Issue
Block a user