添加查询投诉和屏蔽列表查询

This commit is contained in:
chenshaohua
2026-07-09 19:56:55 +08:00
parent 5f216fa68d
commit b2784c0ac1
8 changed files with 67 additions and 25 deletions

View File

@@ -34,5 +34,5 @@ public interface AppUserBlockCompanyService extends IService<AppUserBlockCompany
int batchCancelBlock(Long userId,List<Long> companyIdList);
List<AppUserBlockCompany> selectListByUserId(Long userId);
List<AppUserBlockCompany> selectListByUserId(AppUserBlockCompany appUserBlockCompany);
}

View File

@@ -64,7 +64,7 @@ public class AppUserBlockCompanyServiceImpl extends ServiceImpl<AppUserBlockComp
return baseMapper.update(updateEntity, wrapper);
}
public List<AppUserBlockCompany> selectListByUserId(Long userId){
return appUserBlockCompanyMapper.selectListByUserId(userId);
public List<AppUserBlockCompany> selectListByUserId(AppUserBlockCompany appUserBlockCompany){
return appUserBlockCompanyMapper.selectListByUserId(appUserBlockCompany);
}
}