update 查询所属运营商,带权限校验

This commit is contained in:
Guoqs
2024-06-13 15:44:46 +08:00
parent fe87fa038c
commit 53d83bf1af
6 changed files with 46 additions and 4 deletions

View File

@@ -36,6 +36,8 @@ public interface PileMerchantInfoService {
List<PileMerchantInfo> selectPileMerchantInfoList(PileMerchantInfo pileMerchantInfo);
List<PileMerchantInfo> selectPileMerchantInfoListByIdList(List<String> merchantIdList);
/**
* 新增充电桩运营商信息
*
@@ -72,11 +74,16 @@ public interface PileMerchantInfoService {
/**
* 通过微信小程序appId查询一级运营商merchantId
* @param appId 微信小程序appId
* @param wechatAppId 微信小程序appId
* @return 一级运营商merchantId
*/
String getFirstLevelMerchantIdByWxAppId(String wechatAppId);
/**
* 通过支付宝小程序appId查询一级运营商merchantId
* @param alipayAppId 微信小程序appId
* @return 一级运营商merchantId
*/
String getFirstLevelMerchantIdByAliAppId(String alipayAppId);
MerchantInfoVO getMerchantInfoVO(String merchantId);