feat:实现动态响应处理
This commit is contained in:
parent
f313db715f
commit
e996223c2f
@ -52,6 +52,18 @@ public class UserController extends ReactiveBaseController<User, UserQo> {
|
||||
return reactiveService.updateSelectiveById(updating).thenReturn(Result.ok());
|
||||
}
|
||||
|
||||
/**
|
||||
* 找回密码逻辑
|
||||
* 需要正确输入用户名,邮箱
|
||||
*
|
||||
* @return 结果
|
||||
*/
|
||||
@PostMapping("forget")
|
||||
@Operation("密码找回")
|
||||
public Mono<Result<Void>> forgetPassword() {
|
||||
return Mono.empty();
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改密码逻辑
|
||||
*
|
||||
|
@ -33,6 +33,11 @@
|
||||
<artifactId>spring-boot-starter-cache</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!-- <dependency>-->
|
||||
<!-- <groupId>org.springframework.boot</groupId>-->
|
||||
<!-- <artifactId>spring-boot-starter-mail</artifactId>-->
|
||||
<!-- </dependency>-->
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||||
|
@ -0,0 +1 @@
|
||||
预留备份配置
|
Loading…
Reference in New Issue
Block a user