update 查询运营商列表

This commit is contained in:
2023-11-10 17:13:27 +08:00
parent 140726f388
commit 84b93e9a3c
7 changed files with 88 additions and 11 deletions

View File

@@ -122,4 +122,10 @@ public interface IPileMerchantInfoService {
* 通过merchantId获取一级运营商id
*/
String getFirstLevelMerchantIdByMerchantId(String merchantId);
// 查询全部生效的运营商
List<MerchantInfoVO> selectAll();
// 查询一级运营商下属的二级运营商
List<MerchantInfoVO> selectListByFirstMerchant(String firstMerchantId);
}