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

@@ -25,6 +25,13 @@ public interface PileMerchantInfoMapper {
*/
public PileMerchantInfo selectPileMerchantInfoById(Long id);
/**
* 查询运营商列表
* @param merchantIdList
* @return
*/
List<PileMerchantInfo> selectPileMerchantInfoListByIdList(@Param("merchantIdList") List<String> merchantIdList);
/**
* 通过appid查询充电桩运营商信息
* @param appId
@@ -127,4 +134,5 @@ public interface PileMerchantInfoMapper {
* @return
*/
PileMerchantInfoVO queryMerchantInfoByStationId(String stationId);
}