WANG 6 年 前
コミット
c46ad2354d

+ 20 - 0
examcloud-core-examwork-api-provider/src/main/java/cn/com/qmth/examcloud/core/examwork/api/controller/ExamStudentController.java

@@ -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;
+	}
+
 	/**
 	 * 方法注释
 	 *