教育训练处考试制证系统后端
“djh”
2025-02-05 727c30f11ede5b3c82ead6e09e5e077c0e7519f1
exam-system/src/main/java/com/gkhy/exam/pay/controller/NonCoalPayController.java
@@ -205,4 +205,18 @@
        return success(nonCoalPayStudentService.sendOrder(id, payType));
    }
    @PostMapping("/queryOrder")
    @ApiOperation(value = "查询是否生成缴费订单")
    @Anonymous
    @RepeatSubmit
    @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.sendOrder(id, payType));
    }
}