WANG il y a 6 ans
Parent
commit
83909030f0

+ 6 - 4
examcloud-core-basic-api-provider/src/main/java/cn/com/qmth/examcloud/core/basic/api/provider/StudentCloudServiceProvider.java

@@ -158,15 +158,17 @@ public class StudentCloudServiceProvider extends ControllerSupport implements St
 		return resp;
 	}
 
+	@ApiOperation(value = "修改密码")
+	@PostMapping("updatePassword")
 	@Override
-	public UpdatePasswordResp updatePassword(UpdatePasswordReq req) {
-		// TODO Auto-generated method stub
+	public UpdatePasswordResp updatePassword(@RequestBody UpdatePasswordReq req) {
 		return null;
 	}
 
+	@ApiOperation(value = "更新学生状态")
+	@PostMapping("updateStudentStatus")
 	@Override
-	public UpdateStudentStatusResp updateStudentStatus(UpdateStudentStatusReq req) {
-		// TODO Auto-generated method stub
+	public UpdateStudentStatusResp updateStudentStatus(@RequestBody UpdateStudentStatusReq req) {
 		return null;
 	}