mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 14:05:04 +08:00
Merge branch 'dev' of http://192.168.2.2:8099/jsowell/jsowell-charger-web into dev
This commit is contained in:
@@ -98,4 +98,11 @@ public interface IPileMerchantInfoService {
|
||||
List<PileMerchantInfo> queryFirstLevelMerchant();
|
||||
|
||||
String queryAppIdByMerchantId(String merchantId);
|
||||
|
||||
/**
|
||||
* 通过appid获取运营商部门id
|
||||
* @param appId
|
||||
* @return
|
||||
*/
|
||||
List<String> getDeptIdsByAppId(String appId);
|
||||
}
|
||||
|
||||
@@ -378,5 +378,15 @@ public class PileMerchantInfoServiceImpl implements IPileMerchantInfoService {
|
||||
return appId;
|
||||
}
|
||||
|
||||
/**
|
||||
* 通过appid查询运营商部门id
|
||||
* @param appId
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public List<String> getDeptIdsByAppId(String appId) {
|
||||
return pileMerchantInfoMapper.getDeptIdsByAppId(appId);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user