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