| | |
| | | public List<WorldCupStore> getWorldCupStoreListByStoreId(@RequestBody Integer storeId){ |
| | | return worldCupStoreService.list(new QueryWrapper<WorldCupStore>().eq("storeId", storeId)); |
| | | } |
| | | |
| | | /** |
| | | * 根据门店id修改门店关系数据 |
| | | * @param worldCupStores |
| | | * @return |
| | | */ |
| | | @ResponseBody |
| | | @PostMapping("/worldCup/updateWorldCupStoreListById") |
| | | public Boolean updateWorldCupStoreListById(@RequestBody List<WorldCupStore> worldCupStores){ |
| | | return worldCupStoreService.updateBatchById(worldCupStores); |
| | | } |
| | | |
| | | @ResponseBody |
| | | @PostMapping("/api/worldCup/getWorldCupStore") |
| | |
| | | public List<WorldCupStore> getWorldCupStoreList(@RequestBody Integer storeId){ |
| | | List<WorldCup> worldCupList = worldCupService.list(new QueryWrapper<WorldCup>().in("status", Arrays.asList(1, 2))); |
| | | List<Integer> collect = worldCupList.stream().map(WorldCup::getId).collect(Collectors.toList()); |
| | | return worldCupStoreService.list(new QueryWrapper<WorldCupStore>().eq("storeId", storeId).in("worldCupId", collect).eq("isOpen", 1)); |
| | | if(collect.size() == 0){ |
| | | return new ArrayList<>(); |
| | | } |
| | | return worldCupStoreService.list(new QueryWrapper<WorldCupStore>().eq("storeId", storeId).in("worldCupId", collect) |
| | | .eq("isOpen", 1)); |
| | | } |
| | | |
| | | |
| | |
| | | worldCup.setProvinceCode(provinceCode); |
| | | worldCup.setCity(city.replace("市", "")); |
| | | worldCup.setCityCode(cityCode); |
| | | worldCupService.updateById(worldCup); |
| | | WorldCup worldCup1 = worldCupService.getById(worldCup.getId()); |
| | | worldCup.setCreateTime(worldCup1.getCreateTime()); |
| | | worldCup.setMatchNumber(worldCup1.getMatchNumber()); |
| | | worldCupService.updateWorldCupAll(worldCup); |
| | | return worldCup.getId(); |
| | | } |
| | | |
| | |
| | | */ |
| | | @ResponseBody |
| | | @PostMapping("/base/worldCup/endWorldCupCallback") |
| | | public void endWorldCupCallback(String custom, Integer red_score, Integer blue){ |
| | | worldCupCompetitorService.endWorldCupCallback(custom, red_score, blue); |
| | | public void endWorldCupCallback(String custom, Integer red_score, Integer blue_score){ |
| | | worldCupCompetitorService.endWorldCupCallback(custom, red_score, blue_score); |
| | | } |
| | | |
| | | |
| | |
| | | } |
| | | |
| | | |
| | | @ResponseBody |
| | | @PostMapping("/worldCup/getUserGameRecordList") |
| | | public Map<String, Object> getUserGameRecordList(@RequestBody WorldCupGameStatisticsInfoList worldCupGameStatisticsInfoList){ |
| | | return worldCupPaymentParticipantService.getUserGameRecordList(worldCupGameStatisticsInfoList); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * 获取用户比赛记录明细 |
| | | * @param userGameRecordList |
| | |
| | | public Map<String, Object> userGameRecordList(@RequestBody UserGameRecordList userGameRecordList){ |
| | | return worldCupCompetitorService.userGameRecordList(userGameRecordList); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 获取已报名人数 |
| | | * @param worldCupId |
| | | * @return |
| | | */ |
| | | @ResponseBody |
| | | @PostMapping("/worldCup/getRegisteredNumber") |
| | | public int getRegisteredNumber(@RequestBody Integer worldCupId){ |
| | | List<WorldCupPayment> list = worldCupPaymentService.list(new QueryWrapper<WorldCupPayment>().eq("worldCupId", worldCupId) |
| | | .eq("payStatus", 2).eq("state", 1)); |
| | | List<Long> collect = list.stream().map(WorldCupPayment::getId).collect(Collectors.toList()); |
| | | if(collect.size() == 0){ |
| | | return 0; |
| | | } |
| | | return worldCupPaymentParticipantService.getCount(worldCupId, collect); |
| | | } |
| | | } |