教育训练处考试制证系统后端
“djh”
2025-03-07 960ddab080d2434277bb75c188e2f7380856997e
exam-system/src/main/java/com/gkhy/exam/pay/controller/CoalPayStudentController.java
@@ -30,10 +30,9 @@
     */
    @GetMapping("/studentList/{coalPayId}")
    @ApiOperation(value = "缴费信息对应学员信息")
    public TableDataInfo list(@PathVariable Long coalPayId) {
        startPage();
    public AjaxResult list(@PathVariable Long coalPayId) {
        List<CoalPayStudent> list = coalPayStudentService.selectCoalPayStudentList(coalPayId);
        return getDataTable(list);
        return success(list);
    }
    /**