-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
167 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,91 +46,93 @@ public class UserInfoVO implements Serializable { | |
/** | ||
* ID | ||
*/ | ||
@Schema(description = "ID") | ||
@Schema(description = "ID", example = "1") | ||
private Long id; | ||
|
||
/** | ||
* 用户名 | ||
*/ | ||
@Schema(description = "用户名") | ||
@Schema(description = "用户名", example = "zhangsan") | ||
private String username; | ||
|
||
/** | ||
* 昵称 | ||
*/ | ||
@Schema(description = "昵称") | ||
@Schema(description = "昵称", example = "张三") | ||
private String nickname; | ||
|
||
/** | ||
* 性别(0:未知,1:男,2:女) | ||
*/ | ||
@Schema(description = "性别(0:未知,1:男,2:女)", type = "Integer", allowableValues = {"0", "1", "2"}) | ||
@Schema(description = "性别(0:未知,1:男,2:女)", type = "Integer", allowableValues = {"0", "1", "2"}, example = "1") | ||
private GenderEnum gender; | ||
|
||
/** | ||
* 邮箱 | ||
*/ | ||
@Schema(description = "邮箱") | ||
@Schema(description = "邮箱", example = "[email protected]") | ||
private String email; | ||
|
||
/** | ||
* 手机号码 | ||
*/ | ||
@Schema(description = "手机号码") | ||
@Schema(description = "手机号码", example = "13811111111") | ||
private String phone; | ||
|
||
/** | ||
* 头像地址 | ||
*/ | ||
@Schema(description = "头像地址") | ||
@Schema(description = "头像地址", | ||
example = "https://himg.bdimg.com/sys/portrait/item/public.1.81ac9a9e.rf1ix17UfughLQjNo7XQ_w.jpg") | ||
private String avatar; | ||
|
||
/** | ||
* 描述 | ||
*/ | ||
@Schema(description = "描述") | ||
@Schema(description = "描述", example = "张三用户") | ||
private String description; | ||
|
||
/** | ||
* 最后一次修改密码时间 | ||
*/ | ||
@Schema(description = "最后一次修改密码时间") | ||
@Schema(description = "最后一次修改密码时间", example = "2023-08-08 08:08:08") | ||
private LocalDateTime pwdResetTime; | ||
|
||
/** | ||
* 创建时间 | ||
*/ | ||
@Schema(description = "创建时间", example = "2023-08-08 08:08:08") | ||
@JsonIgnore | ||
private LocalDateTime createTime; | ||
|
||
/** | ||
* 注册日期 | ||
*/ | ||
@Schema(description = "注册日期") | ||
@Schema(description = "注册日期", example = "2023-08-08") | ||
private LocalDate registrationDate; | ||
|
||
/** | ||
* 部门 ID | ||
*/ | ||
@Schema(description = "部门 ID") | ||
@Schema(description = "部门 ID", example = "1") | ||
private Long deptId; | ||
|
||
/** | ||
* 所属部门 | ||
*/ | ||
@Schema(description = "所属名称") | ||
@Schema(description = "所属部门", example = "测试部") | ||
private String deptName; | ||
|
||
/** | ||
* 权限码集合 | ||
*/ | ||
@Schema(description = "权限码集合") | ||
@Schema(description = "权限码集合", example = "[system:user:list,system:user:add]") | ||
private Set<String> permissions; | ||
|
||
/** | ||
* 角色编码集合 | ||
*/ | ||
@Schema(description = "角色编码集合") | ||
@Schema(description = "角色编码集合", example = "[admin,test]") | ||
private Set<String> roles; | ||
|
||
public String getPhone() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.