Jelajahi Sumber

Merge branch 'dev-api' into dev

tom 5 bulan lalu
induk
melakukan
fdbfc96eea

+ 4 - 4
ruoyi-sim/src/main/java/com/ruoyi/sim/controller/RealExamController.java

@@ -39,8 +39,8 @@ public class RealExamController extends BaseController {
      * 查询考试列表
      */
     // @PreAuthorize("@ss.hasPermi('sim:real-exam:list')")
-    @GetMapping("/teacher/list")
-    @ApiOperation("[老师]查询学生考试列表")
+    // @GetMapping("/teacher/list")
+    // @ApiOperation("[老师]查询学生考试列表")
     public TableDataInfo list(RealExam realExam) {
         startPage();
         List<RealExam> list = realExamService.selectRealExamList(realExam);
@@ -77,8 +77,8 @@ public class RealExamController extends BaseController {
     }
 
     // @PreAuthorize("@ss.hasPermi('sim:real-exam:query')")
-    @GetMapping(value = "/teacher/{examId}")
-    @ApiOperation("[老师]获取考试详细信息")
+    // @GetMapping(value = "/teacher/{examId}")
+    // @ApiOperation("[老师]获取考试详细信息")
     public AjaxResult getInfoTeacher(@PathVariable("examId") Long examId) {
         return success(realExamService.selectRealExamByExamId(examId));
     }