教育训练处考试制证系统后端
heheng
2025-02-05 ce5853e8e540693421c86e32a050d8a2e214198a
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));
    }
}