余额支付订单

This commit is contained in:
2023-11-28 14:27:42 +08:00
parent 532f4489fe
commit cdc037690b
3 changed files with 39 additions and 39 deletions

View File

@@ -111,8 +111,18 @@ public interface IPileMerchantInfoService {
*/
List<String> getDeptIdsByAppId(String appId);
/**
* 通过wechatAppId查询一级运营商的延时支付模式配置
* @param wechatAppId 微信小程序id
* @return 延时分账模式0-不延时1-延时分账)
*/
String getDelayModeByWechatAppId(String wechatAppId);
/**
* 通过运营商id查询一级运营商配置的delayMode
* @param merchantId 运营商id
* @return 延时分账模式0-不延时1-延时分账)
*/
String getDelayModeByMerchantId(String merchantId);
/**