|  |  |  | 
|---|
|  |  |  | @ResponseBody | 
|---|
|  |  |  | @RequestMapping("/base/competition/listAllPayment") | 
|---|
|  |  |  | public List<PaymentCompetition> listAllPayment(@RequestBody CompetitionQuery query){ | 
|---|
|  |  |  | Integer operatorId1 = query.getOperatorId(); | 
|---|
|  |  |  | if (operatorId1!=null){ | 
|---|
|  |  |  | // 赛事集合id | 
|---|
|  |  |  | List<Integer> operatorId = cttService.list(new QueryWrapper<Competition>() | 
|---|
|  |  |  | .eq("operatorId", operatorId1)).stream().map(Competition::getId).collect(Collectors.toList()); | 
|---|
|  |  |  | query.setUserIds(operatorId); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | List<PaymentCompetition> paymentCompetitions = paymentCompetitionService.listAll(query); | 
|---|
|  |  |  | List<PaymentCompetition> result = new ArrayList<>(); | 
|---|
|  |  |  | if (query.getOperatorId()!=null){ | 
|---|