订单分账逻辑

This commit is contained in:
2023-08-26 14:09:04 +08:00
parent cf21a9a237
commit 8a2326f300
8 changed files with 100 additions and 41 deletions

View File

@@ -97,7 +97,7 @@ public interface IPileMerchantInfoService {
* 查询一级运营商列表
* @return
*/
List<PileMerchantInfo> queryFirstLevelMerchant();
List<PileMerchantInfo> queryFirstLevelMerchantList();
String queryAppIdByMerchantId(String merchantId);
@@ -109,4 +109,9 @@ public interface IPileMerchantInfoService {
List<String> getDeptIdsByAppId(String appId);
String getDelayModeByWechatAppId(String wechatAppId);
/**
* 通过merchantId获取一级运营商信息
*/
PileMerchantInfo getFirstLevelMerchantByMerchantId(String merchantId);
}