| | |
| | | import org.apache.poi.hssf.usermodel.HSSFWorkbook; |
| | | import org.springframework.stereotype.Controller; |
| | | import org.springframework.ui.Model; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.servlet.http.HttpServletResponse; |
| | |
| | | // 获取报了名的用户 未产生赛事 |
| | | return worldCupClient.userDetailsOfSearch(userDetailsOfSearch); |
| | | } |
| | | |
| | | |
| | | @ResponseBody |
| | | @PostMapping("/savaData1") |
| | | public Object savaData1(SaveData saveData){ |
| | | // 修改WorldCupPaymentParticipant 参赛状态 savet_world_cup_competitor |
| | | worldCupClient.savaData1(saveData); |
| | | return ResultUtil.success(); |
| | | } |
| | | } |