教育训练处考试制证系统后端
“djh”
2025-02-18 bc472feefdfc4afbcb0fcd35a8fb8d047edf6a9f
exam-system/src/main/java/com/gkhy/exam/pay/controller/NonCoalPayController.java
@@ -205,4 +205,17 @@
        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.sendOrder(id, payType));
    }
}