|
@@ -43,7 +43,7 @@ public class CoachInfoServiceImpl extends ServiceImpl<CoachInfoMapper, CoachInfo
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public Response updateCoachPassWord(CoachInfoPwDTO coaPwDto) {
|
|
|
+ public Response updateCoachPassword(CoachInfoPwDTO coaPwDto) {
|
|
|
|
|
|
CoachInfoDTO coaDto = new CoachInfoDTO();
|
|
|
BeanUtils.copyProperties(coaPwDto,coaDto);
|
|
@@ -52,7 +52,7 @@ public class CoachInfoServiceImpl extends ServiceImpl<CoachInfoMapper, CoachInfo
|
|
|
Response response = new Response(502,"用户不存在或用户密码错误");
|
|
|
return response;
|
|
|
} else {
|
|
|
- int result = mapper.updateCoachPassWord(coaPwDto);
|
|
|
+ int result = mapper.updateCoachPassword(coaPwDto);
|
|
|
return Response.success(result);
|
|
|
}
|
|
|
}
|