| | |
| | | |
| | | @PostMapping("/updateNonCoalStu") |
| | | @ApiOperation(value = "更新财政缴款码") |
| | | @Anonymous |
| | | public AjaxResult updateNonCoalStu(@RequestBody NonCoalPayStudentReqDto nonCoalPayStudent) { |
| | | return toAjax(nonCoalPayStudentService.updateNonCoalStu(nonCoalPayStudent)); |
| | | } |
| | |
| | | return success(nonCoalPayStudentService.sendOrder(id, payType)); |
| | | } |
| | | |
| | | |
| | | @PostMapping("/queryOrder") |
| | | @ApiOperation(value = "查询是否缴费成功") |
| | | @Anonymous |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "id", dataTypeClass = Long.class, value = "个人缴费学员数据id,团队缴费数据id", required = true), |
| | | @ApiImplicitParam(name = "payType", dataTypeClass = String.class, value = "1个人2是团队", required = true), |
| | | }) |
| | | public AjaxResult queryOrder(@RequestParam("id") Long id, @RequestParam("payType") String payType) { |
| | | return success(nonCoalPayStudentService.queryOrder(id, payType)); |
| | | } |
| | | |
| | | |
| | | } |