houzhongyi
2024-07-11 e7c1260db32209a078a962aaa0ad5492c35774fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.iailab.module.system.controller.admin.oauth2.vo.user;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
 
import java.util.List;
 
@Schema(description = "管理后台 - OAuth2 获得用户基本信息 Response VO")
@Data
@NoArgsConstructor
@AllArgsConstructor
public class OAuth2UserInfoRespVO {
 
    @Schema(description = "用户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Long id;
 
    @Schema(description = "用户账号", requiredMode = Schema.RequiredMode.REQUIRED, example = "iailab")
    private String username;
 
    @Schema(description = "用户昵称", requiredMode = Schema.RequiredMode.REQUIRED, example = "平台")
    private String nickname;
 
    @Schema(description = "用户邮箱", example = "iailab@iocoder.cn")
    private String email;
    @Schema(description = "手机号码", example = "15601691300")
    private String mobile;
 
    @Schema(description = "用户性别,参见 SexEnum 枚举类", example = "1")
    private Integer sex;
 
    @Schema(description = "用户头像", example = "https://www.baidu.com/xxx.png")
    private String avatar;
 
    /**
     * 所在部门
     */
    private Dept dept;
 
    /**
     * 所属岗位数组
     */
    private List<Post> posts;
 
    @Schema(description = "部门")
    @Data
    public static class Dept {
 
        @Schema(description = "部门编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
        private Long id;
 
        @Schema(description = "部门名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "研发部")
        private String name;
 
    }
 
    @Schema(description = "岗位")
    @Data
    public static class Post {
 
        @Schema(description = "岗位编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
        private Long id;
 
        @Schema(description = "岗位名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "开发")
        private String name;
 
    }
 
}