mirror of
https://github.com/RemainderTime/spring-boot-base-demo.git
synced 2026-06-09 11:39:58 +08:00
1. springboot版本升级3.x
2. mybatis plus版本升级3.x 3. dynamic mybatis plus版本升级3.x 4. redis版本升级3.x 5. reids实现配置优化 6. 替换swagger依赖(支持3.x) 7. 新增请求头工具类 8. 参数校验异常捕获优化 9. 拦截器注册为spring容器管理 10. 新增本地日志配置文件
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
package cn.xf.basedemo.model.res;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
@@ -12,12 +11,11 @@ import lombok.Data;
|
||||
* @create: 2022-07-04 11:46
|
||||
**/
|
||||
@Data
|
||||
@ApiModel(value = "登录请求对象")
|
||||
public class LoginInfoRes {
|
||||
|
||||
/**
|
||||
* 登录密文
|
||||
*/
|
||||
@ApiModelProperty(value = "encryptedData", name = "登录密文")
|
||||
@Schema(name = "登录密文")
|
||||
private String encryptedData;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user