|
@@ -88,6 +88,26 @@ public class ExamStudentController extends ControllerSupport {
|
|
|
@Autowired
|
|
|
ExamRecordCloudService examRecordCloudService;
|
|
|
|
|
|
+ /**
|
|
|
+ * 方法注释
|
|
|
+ *
|
|
|
+ * @author WANGWEI
|
|
|
+ * @param studentId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @ApiOperation(value = "查询考生的专业集合")
|
|
|
+ @GetMapping("specialtyNameList/{studentId}")
|
|
|
+ public List<String> getSpecialtyNameListByStudentId(@PathVariable Long studentId) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "查询考生的专业集合")
|
|
|
+ @GetMapping("courseLevelList/{studentId}")
|
|
|
+ public List<String> getCourseLevelByStudentId(@PathVariable Long studentId) {
|
|
|
+
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 方法注释
|
|
|
*
|