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); } /**